2018-09-02 22:31:26 +01:00
|
|
|
{ stdenv, skawarePackages }:
|
2014-08-30 06:12:38 +01:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
with skawarePackages;
|
2014-08-30 06:12:38 +01:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
buildPackage {
|
|
|
|
pname = "s6-linux-utils";
|
2018-09-02 16:04:57 +01:00
|
|
|
version = "2.5.0.0";
|
2018-09-04 20:55:47 +01:00
|
|
|
sha256 = "04q2z71dkzahd2ppga2zikclz2qk014c23gm7rigqxjc8rs1amvq";
|
2014-08-30 06:12:38 +01:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
description = "A set of minimalistic Linux-specific system utilities";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-08-30 06:12:38 +01:00
|
|
|
|
2018-07-22 16:03:19 +01:00
|
|
|
outputs = [ "bin" "dev" "doc" "out" ];
|
|
|
|
|
2018-09-02 16:04:57 +01:00
|
|
|
# TODO: nsss support
|
2014-12-23 16:06:27 +00:00
|
|
|
configureFlags = [
|
2018-07-22 16:03:19 +01:00
|
|
|
"--bindir=\${bin}/bin"
|
|
|
|
"--includedir=\${dev}/include"
|
|
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs.dev}/include"
|
|
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
|
|
"--with-dynlib=${skalibs.lib}/lib"
|
2014-12-23 16:06:27 +00:00
|
|
|
];
|
2014-08-30 06:12:38 +01:00
|
|
|
|
2018-07-22 16:03:19 +01:00
|
|
|
postInstall = ''
|
2018-09-02 22:31:26 +01:00
|
|
|
# remove all s6 executables from build directory
|
|
|
|
rm $(find -name "s6-*" -type f -mindepth 1 -maxdepth 1 -executable)
|
2018-07-22 16:03:19 +01:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
mv doc $doc/share/doc/s6-linux-utils/html
|
|
|
|
'';
|
2014-08-30 06:12:38 +01:00
|
|
|
|
|
|
|
}
|