nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 24 lines 721 B view raw
1{ lib, stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation { 4 pname = "undaemonize"; 5 version = "unstable-2017-07-11"; 6 7 src = fetchFromGitHub { 8 repo = "undaemonize"; 9 owner = "nickstenning"; 10 rev = "a181cfd900851543ee1f85fe8f76bc8916b446d4"; 11 sha256 = "1fkrgj3xfhj820qagh5p0rabl8z2hpad6yp984v92h9pgbfwxs33"; 12 }; 13 installPhase = '' 14 install -D undaemonize $out/bin/undaemonize 15 ''; 16 meta = { 17 description = "Tiny helper utility to force programs which insist on daemonizing themselves to run in the foreground"; 18 homepage = "https://github.com/nickstenning/undaemonize"; 19 license = lib.licenses.mit; 20 maintainers = [ lib.maintainers.canndrew ]; 21 platforms = lib.platforms.linux; 22 }; 23} 24