f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
23 lines
709 B
Nix
23 lines
709 B
Nix
{ 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;
|
|
};
|
|
}
|
|
|