about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/s6/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/system/s6/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/system/s6/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/nixpkgs/pkgs/tools/system/s6/default.nix b/nixpkgs/pkgs/tools/system/s6/default.nix
deleted file mode 100644
index 1c3795a3f6af..000000000000
--- a/nixpkgs/pkgs/tools/system/s6/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ skawarePackages }:
-
-with skawarePackages;
-
-buildPackage {
-  pname = "s6";
-  version = "2.11.1.2";
-  sha256 = "sha256-bBR0vj6Inaw5LO4wer4BXNS+DIXHJchOp/GE8ONFA6I=";
-
-  description = "skarnet.org's small & secure supervision software suite";
-
-  # NOTE lib: cannot split lib from bin at the moment,
-  # since some parts of lib depend on executables in bin.
-  # (the `*_startf` functions in `libs6`)
-  outputs = [ /*"bin" "lib"*/ "out" "dev" "doc" ];
-
-  # TODO: nsss support
-  configureFlags = [
-    "--libdir=\${out}/lib"
-    "--libexecdir=\${out}/libexec"
-    "--dynlibdir=\${out}/lib"
-    "--bindir=\${out}/bin"
-    "--includedir=\${dev}/include"
-    "--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
-    "--with-include=${skalibs.dev}/include"
-    "--with-include=${execline.dev}/include"
-    "--with-lib=${skalibs.lib}/lib"
-    "--with-lib=${execline.lib}/lib"
-    "--with-dynlib=${skalibs.lib}/lib"
-    "--with-dynlib=${execline.lib}/lib"
-  ];
-
-  postInstall = ''
-    # remove all s6 executables from build directory
-    rm $(find -type f -mindepth 1 -maxdepth 1 -executable)
-    rm libs6.*
-    rm ./libs6lockd.a.xyzzy
-
-    mv doc $doc/share/doc/s6/html
-    mv examples $doc/share/doc/s6/examples
-  '';
-
-}