2018-09-02 22:31:26 +01:00
|
|
|
{ stdenv, skawarePackages }:
|
2014-08-30 06:05:23 +01:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
with skawarePackages;
|
2017-03-06 00:00:50 +00:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
let
|
|
|
|
pname = "s6-portable-utils";
|
|
|
|
|
|
|
|
in buildPackage {
|
|
|
|
pname = pname;
|
2018-09-02 16:04:57 +01:00
|
|
|
version = "2.2.1.2";
|
2018-09-04 20:55:47 +01:00
|
|
|
sha256 = "0if77z07rfygd1yk9d2abxkdbx3dg52vcjhb20isb8kvqxhkg8ih";
|
2014-08-30 06:05:23 +01:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
description = "A set of tiny general Unix utilities optimized for simplicity and small size";
|
2014-08-30 06:05:23 +01:00
|
|
|
|
2018-07-22 16:03:19 +01:00
|
|
|
outputs = [ "bin" "dev" "doc" "out" ];
|
|
|
|
|
2017-03-06 00:53: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"
|
2018-09-02 22:31:26 +01:00
|
|
|
];
|
2017-03-06 01:35:53 +00: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)
|
|
|
|
rm seekablepipe
|
|
|
|
|
|
|
|
mv doc $doc/share/doc/${pname}/html
|
2018-07-22 16:03:19 +01:00
|
|
|
'';
|
|
|
|
|
2014-08-30 06:05:23 +01:00
|
|
|
|
|
|
|
}
|