summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-09-28 08:58:03 -0400
committerGraham Christensen <graham@grahamc.com>2016-09-28 08:58:03 -0400
commit337eb4d027e87ed7210f5fc2ac4be0fa81b9d059 (patch)
treead37c935192466941cb75883a948add32d4295db
parent86c9b471a6864093077ac308f040425fe0a8b44d (diff)
downloadnixlib-337eb4d027e87ed7210f5fc2ac4be0fa81b9d059.tar
nixlib-337eb4d027e87ed7210f5fc2ac4be0fa81b9d059.tar.gz
nixlib-337eb4d027e87ed7210f5fc2ac4be0fa81b9d059.tar.bz2
nixlib-337eb4d027e87ed7210f5fc2ac4be0fa81b9d059.tar.lz
nixlib-337eb4d027e87ed7210f5fc2ac4be0fa81b9d059.tar.xz
nixlib-337eb4d027e87ed7210f5fc2ac4be0fa81b9d059.tar.zst
nixlib-337eb4d027e87ed7210f5fc2ac4be0fa81b9d059.zip
mesos: mark as broken
https://github.com/NixOS/nixpkgs/issues/18856
-rw-r--r--pkgs/applications/networking/cluster/mesos/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix
index 6768df2df025..ac7d94d5c9a8 100644
--- a/pkgs/applications/networking/cluster/mesos/default.nix
+++ b/pkgs/applications/networking/cluster/mesos/default.nix
@@ -46,7 +46,7 @@ in stdenv.mkDerivation rec {
 
   preConfigure = ''
     substituteInPlace src/Makefile.am --subst-var-by mavenRepo ${mavenRepo}
-    
+
     substituteInPlace 3rdparty/libprocess/include/process/subprocess.hpp \
       --replace '"sh"' '"${bash}/bin/bash"'
 
@@ -64,7 +64,7 @@ in stdenv.mkDerivation rec {
 
     substituteInPlace src/launcher/executor.cpp \
       --replace '"sh"' '"${bash}/bin/bash"'
-    
+
     substituteInPlace src/launcher/fetcher.cpp \
       --replace '"gzip' '"${gzip}/bin/gzip'    \
       --replace '"tar' '"${gnutar}/bin/tar'    \
@@ -72,7 +72,7 @@ in stdenv.mkDerivation rec {
 
     substituteInPlace src/python/cli/src/mesos/cli.py \
      --replace "['mesos-resolve'" "['$out/bin/mesos-resolve'"
-    
+
     substituteInPlace src/slave/containerizer/mesos/launch.cpp \
       --replace '"sh"' '"${bash}/bin/bash"'
 
@@ -83,7 +83,7 @@ in stdenv.mkDerivation rec {
 
     substituteInPlace src/linux/perf.cpp       \
       --replace '"perf ' '"${perf}/bin/perf '
-    
+
     substituteInPlace src/linux/systemd.cpp \
       --replace 'os::realpath("/sbin/init")' '"${systemd}/lib/systemd/systemd"'
 
@@ -180,5 +180,8 @@ in stdenv.mkDerivation rec {
     description = "A cluster manager that provides efficient resource isolation and sharing across distributed applications, or frameworks";
     maintainers = with maintainers; [ cstrahan kevincox offline rushmorem ];
     platforms   = platforms.linux;
+    # Marked as broken due to needing an update for security issues.
+    # See: https://github.com/NixOS/nixpkgs/issues/18856
+    broken = true;
   };
 }