2020-12-02 01:13:21 +00:00
|
|
|
{ stdenv, fetchurl, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "daemon";
|
|
|
|
version = "0.7";
|
2019-09-22 19:18:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-02 01:13:21 +00:00
|
|
|
url = "http://libslack.org/daemon/download/daemon-${version}.tar.gz";
|
2020-12-01 22:49:42 +00:00
|
|
|
sha256 = "0b17zzl7bqnkn7a4pr3l6fxqfmxfld7izphrab5nvhc4wzng4spn";
|
2019-09-22 19:18:54 +00:00
|
|
|
};
|
2020-12-02 01:13:21 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2019-09-22 19:18:54 +00:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2020-12-02 01:13:21 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "Turns other processes into daemons";
|
2019-09-22 19:18:54 +00:00
|
|
|
longDescription = ''
|
|
|
|
Daemon turns other process into daemons. There are many tasks that need
|
|
|
|
to be performed to correctly set up a daemon process. This can be tedious.
|
|
|
|
Daemon performs these tasks for other processes. This is useful for
|
|
|
|
writing daemons in languages other than C, C++ or Perl (e.g. /bin/sh,
|
|
|
|
Java).
|
|
|
|
'';
|
2020-12-02 01:13:21 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.sander ];
|
|
|
|
platforms = platforms.unix;
|
2019-09-22 19:18:54 +00:00
|
|
|
};
|
|
|
|
}
|