mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
4b46c7e8eb
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
53 lines
1.7 KiB
Nix
53 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, skawarePackages
|
|
, skalibs
|
|
, execline
|
|
, s6
|
|
, targetPackages
|
|
}:
|
|
|
|
skawarePackages.buildPackage {
|
|
pname = "s6-linux-init";
|
|
version = "1.1.2.0";
|
|
sha256 = "sha256-Ea4I0KZiELXla2uu4Pa5sbafvtsF/aEoWxFaMcpGx38=";
|
|
|
|
description = "A set of minimalistic tools used to create a s6-based init system, including a /sbin/init binary, on a Linux kernel";
|
|
platforms = lib.platforms.linux;
|
|
|
|
outputs = [ "bin" "dev" "doc" "out" ];
|
|
|
|
configureFlags = [
|
|
"--bindir=\${bin}/bin"
|
|
"--includedir=\${dev}/include"
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
"--with-include=${skalibs.dev}/include"
|
|
"--with-include=${execline.dev}/include"
|
|
"--with-include=${s6.dev}/include"
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
"--with-lib=${s6.out}/lib"
|
|
"--with-lib=${execline.lib}/lib"
|
|
"--with-dynlib=${skalibs.lib}/lib"
|
|
"--with-dynlib=${execline.lib}/lib"
|
|
"--with-dynlib=${s6.out}/lib"
|
|
];
|
|
|
|
# See ../s6-rc/default.nix for an explanation
|
|
postConfigure = lib.optionalString (stdenv.hostPlatform != stdenv.targetPlatform) ''
|
|
substituteInPlace src/init/s6-linux-init-maker.c \
|
|
--replace-fail '<execline/config.h>' '"${targetPackages.execline.dev}/include/execline/config.h"' \
|
|
--replace-fail '<s6/config.h>' '"${targetPackages.s6.dev}/include/s6/config.h"' \
|
|
--replace-fail '<s6-linux-init/config.h>' '"${targetPackages.s6-linux-init.dev}/include/s6-linux-init/config.h"'
|
|
'';
|
|
|
|
postInstall = ''
|
|
# remove all s6 executables from build directory
|
|
rm $(find -name "s6-*" -type f -mindepth 1 -maxdepth 1 -executable)
|
|
rm libs6_linux_init.* libhpr.*
|
|
rm -rf skel
|
|
|
|
mv doc $doc/share/doc/s6-linux-init/html
|
|
'';
|
|
|
|
}
|