Files
nixpkgs/pkgs/os-specific/linux/sinit/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

45 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchgit,
rcinit ? null,
rcshutdown ? null,
rcreboot ? null,
}:
stdenv.mkDerivation rec {
pname = "sinit";
version = "1.1";
src = fetchgit {
url = "https://git.suckless.org/sinit/";
sha256 = "sha256-VtXkgixgElKKOT26uKN9feXDVjjtSgTWvcgk5o5MLmw=";
tag = "v${version}";
};
buildInputs = [
(lib.getOutput "static" stdenv.cc.libc)
];
makeFlags = [ "PREFIX=$(out)" ];
preConfigure =
""
+ (lib.optionalString (
rcinit != null
) ''sed -re 's@(rcinitcmd[^"]*")[^"]*"@\1${rcinit}"@' -i config.def.h; '')
+ (lib.optionalString (
rcshutdown != null
) ''sed -re 's@(rc(reboot|poweroff)cmd[^"]*")[^"]*"@\1${rcshutdown}"@' -i config.def.h; '')
+ (lib.optionalString (
rcreboot != null
) ''sed -re 's@(rc(reboot)cmd[^"]*")[^"]*"@\1${rcreboot}"@' -i config.def.h; '');
meta = {
description = "Very minimal Linux init implementation from suckless.org";
mainProgram = "sinit";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.linux;
homepage = "https://tools.suckless.org/sinit";
downloadPage = "https://git.suckless.org/sinit";
};
}