mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
m4,
|
|
installShellFiles,
|
|
util-linux,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dinit";
|
|
version = "0.19.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davmac314";
|
|
repo = "dinit";
|
|
rev = "v${version}";
|
|
hash = "sha256-z5qfC+aUwSK7UJ2RcyNHcUAUYXKbMrWmqmcn7fJVLD8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/shutdown.cc \
|
|
--replace-fail '"/bin/umount"' '"${util-linux}/bin/umount"' \
|
|
--replace-fail '"/sbin/swapoff"' '"${util-linux}/bin/swapoff"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
m4
|
|
installShellFiles
|
|
];
|
|
|
|
configureFlags = [
|
|
"--prefix=${placeholder "out"}"
|
|
"--sbindir=${placeholder "out"}/bin"
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd dinitctl \
|
|
--bash contrib/shell-completion/bash/dinitctl \
|
|
--fish contrib/shell-completion/fish/dinitctl.fish \
|
|
--zsh contrib/shell-completion/zsh/_dinit
|
|
'';
|
|
|
|
meta = {
|
|
description = "A service manager / supervision system, which can (on Linux) also function as a system manager and init";
|
|
homepage = "https://davmac.org/projects/dinit";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ aanderse ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|