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

19 lines
523 B
Nix
Raw Normal View History

2015-03-19 01:32:37 +03:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "daemonize-${version}";
2016-05-15 14:13:45 +03:00
version = "1.7.7";
2015-03-19 01:32:37 +03:00
src = fetchurl {
url = "https://github.com/bmc/daemonize/archive/release-${version}.tar.gz";
2016-05-15 14:13:45 +03:00
sha256 = "01gabcc8m4jkymd31p6v5883ii3g7126cici6rd03maf4jizxjmk";
2015-03-19 01:32:37 +03:00
};
meta = with stdenv.lib; {
description = "Runs a command as a Unix daemon";
homepage = http://software.clapper.org/daemonize/;
license = licenses.bsd3;
platforms = with platforms; linux ++ freebsd ++ darwin;
};
}