nixpkgs/pkgs/tools/system/daemonize/default.nix

19 lines
510 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-03-18 22:32:37 +00:00
stdenv.mkDerivation rec {
pname = "daemonize";
version = "1.7.8";
2015-03-18 22:32:37 +00:00
src = fetchurl {
url = "https://github.com/bmc/daemonize/archive/release-${version}.tar.gz";
sha256 = "0q2c3i3si3k7wfhl6fyckkmkc81yp67pz52p3ggis79p4nczri10";
2015-03-18 22:32:37 +00:00
};
meta = with lib; {
2015-03-18 22:32:37 +00:00
description = "Runs a command as a Unix daemon";
homepage = "http://software.clapper.org/daemonize/";
2015-03-18 22:32:37 +00:00
license = licenses.bsd3;
platforms = with platforms; linux ++ freebsd ++ darwin;
};
}