2019-06-16 19:59:06 +00:00
|
|
|
{ skawarePackages }:
|
2014-08-30 05:05:23 +00:00
|
|
|
|
2018-09-02 21:31:26 +00:00
|
|
|
with skawarePackages;
|
2017-03-06 00:00:50 +00:00
|
|
|
|
2021-06-15 13:46:38 +00:00
|
|
|
buildPackage {
|
2018-09-02 21:31:26 +00:00
|
|
|
pname = "s6-portable-utils";
|
2023-04-02 20:59:05 +00:00
|
|
|
version = "2.3.0.2";
|
|
|
|
sha256 = "hxQmkTTwEmUNqsBA5WRjct6lZYucDYmnygO7Kr7E0eg=";
|
2014-08-30 05:05:23 +00:00
|
|
|
|
2018-09-02 21:31:26 +00:00
|
|
|
description = "A set of tiny general Unix utilities optimized for simplicity and small size";
|
2014-08-30 05:05:23 +00:00
|
|
|
|
2018-07-22 15:03:19 +00:00
|
|
|
outputs = [ "bin" "dev" "doc" "out" ];
|
|
|
|
|
2017-03-06 00:53:27 +00:00
|
|
|
configureFlags = [
|
2018-07-22 15:03:19 +00: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 21:31:26 +00:00
|
|
|
];
|
2017-03-06 01:35:53 +00:00
|
|
|
|
2018-07-22 15:03:19 +00:00
|
|
|
postInstall = ''
|
2018-09-02 21:31:26 +00:00
|
|
|
# remove all s6 executables from build directory
|
|
|
|
rm $(find -name "s6-*" -type f -mindepth 1 -maxdepth 1 -executable)
|
|
|
|
rm seekablepipe
|
|
|
|
|
2021-06-15 13:46:38 +00:00
|
|
|
mv doc $doc/share/doc/s6-portable-utils/html
|
2018-07-22 15:03:19 +00:00
|
|
|
'';
|
|
|
|
|
2014-08-30 05:05:23 +00:00
|
|
|
|
|
|
|
}
|