mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
37 lines
1.3 KiB
Nix
37 lines
1.3 KiB
Nix
{stdenv, fetchgit, rcinit ? null, rcshutdown ? null, rcreboot ? null}:
|
|
let
|
|
s = # Generated upstream information
|
|
rec {
|
|
baseName="sinit";
|
|
version="0.9.2";
|
|
name="${baseName}-${version}";
|
|
url="http://git.suckless.org/sinit/";
|
|
sha256="0nncyzwnszwlqcvx1jf42rn1n2dd5vcxkndqb1b546pgpifniivp";
|
|
rev = "refs/tags/v${version}";
|
|
};
|
|
buildInputs = [
|
|
];
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit (s) name version;
|
|
inherit buildInputs;
|
|
src = fetchgit {
|
|
inherit (s) url sha256 rev;
|
|
};
|
|
makeFlags = ["PREFIX=$(out)"];
|
|
preConfigure = ""
|
|
+ (stdenv.lib.optionalString (rcinit != null) ''sed -re 's@(rcinitcmd[^"]*")[^"]*"@\1${rcinit}"@' -i config.def.h; '')
|
|
+ (stdenv.lib.optionalString (rcshutdown != null) ''sed -re 's@(rc(reboot|poweroff)cmd[^"]*")[^"]*"@\1${rcshutdown}"@' -i config.def.h; '')
|
|
+ (stdenv.lib.optionalString (rcreboot != null) ''sed -re 's@(rc(reboot)cmd[^"]*")[^"]*"@\1${rcreboot}"@' -i config.def.h; '')
|
|
;
|
|
meta = {
|
|
inherit (s) version;
|
|
description = ''A very minimal Linux init implementation from suckless.org'';
|
|
license = stdenv.lib.licenses.mit ;
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
homepage = "http://tools.suckless.org/sinit";
|
|
downloadPage = "http://git.suckless.org/sinit";
|
|
};
|
|
}
|