nixpkgs/pkgs/os-specific/linux/sysvinit/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-15 14:45:37 +00:00
{ lib, stdenv, fetchurl, withoutInitTools ? false }:
2020-07-11 04:23:28 +00:00
let version = "2.97"; in
stdenv.mkDerivation {
name = (if withoutInitTools then "sysvtools" else "sysvinit") + "-" + version;
src = fetchurl {
2018-12-04 06:55:04 +00:00
url = "mirror://savannah/sysvinit/sysvinit-${version}.tar.xz";
2020-07-11 04:23:28 +00:00
sha256 = "042iyayyh3j28vfbypzn822b73r3nfmyn79f9mixigqrfn2rcn9d";
};
prePatch = ''
# Patch some minimal hard references, so halt/shutdown work
sed -i -e "s,/sbin/,$out/sbin/," src/halt.c src/init.c src/paths.h
'';
makeFlags = [ "SULOGINLIBS=-lcrypt" "ROOT=$(out)" "MANDIR=/share/man" ];
preInstall =
''
substituteInPlace src/Makefile --replace /usr /
'';
postInstall = ''
mv $out/sbin/killall5 $out/bin
ln -sf killall5 $out/bin/pidof
''
2021-01-15 14:45:37 +00:00
+ lib.optionalString withoutInitTools
''
shopt -s extglob
rm -rf $out/sbin/!(sulogin)
rm -rf $out/include
rm -rf $out/share/man/man5
rm $(for i in $out/share/man/man8/*; do echo $i; done | grep -v 'pidof\|killall5')
rm $out/bin/wall $out/share/man/man1/wall.1
'';
meta = {
homepage = "https://www.nongnu.org/sysvinit/";
description = "Utilities related to booting and shutdown";
2021-01-15 14:45:37 +00:00
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
};
}