mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
undaemonize: init at 2017-07-11 (#27325)
This commit is contained in:
parent
8f5f986453
commit
07e7527fdb
22
pkgs/tools/system/undaemonize/default.nix
Normal file
22
pkgs/tools/system/undaemonize/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "undaemonize-2017-07-11";
|
||||
src = fetchFromGitHub {
|
||||
repo = "undaemonize";
|
||||
owner = "nickstenning";
|
||||
rev = "a181cfd900851543ee1f85fe8f76bc8916b446d4";
|
||||
sha256 = "1fkrgj3xfhj820qagh5p0rabl8z2hpad6yp984v92h9pgbfwxs33";
|
||||
};
|
||||
installPhase = ''
|
||||
install -D undaemonize $out/bin/undaemonize
|
||||
'';
|
||||
meta = {
|
||||
description = "Tiny helper utility to force programs which insist on daemonizing themselves to run in the foreground";
|
||||
homepage = "https://github.com/nickstenning/undaemonize";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.canndrew ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -19127,4 +19127,6 @@ with pkgs;
|
||||
linode-cli = callPackage ../tools/virtualization/linode-cli { };
|
||||
|
||||
hss = callPackage ../tools/networking/hss {};
|
||||
|
||||
undaemonize = callPackage ../tools/system/undaemonize {};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user