aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/system/daemon/default.nix
blob: fb06247f9843654137099c8f065da5c4591b879a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{stdenv, fetchurl, perl}:

stdenv.mkDerivation {
  name = "daemon-0.6.4";
  src = fetchurl {
    url = "http://libslack.org/daemon/download/daemon-0.6.4.tar.gz";
    sha256 = "18aw0f8k3j30xqwv4z03962kdpqd10nf1w9liihylmadlx5fmff4";
  };
  makeFlags = [ "PREFIX=$(out)" ];
  buildInputs = [ perl ];

  meta = {
    description = "Daemon turns other process into daemons";
    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).
    '';
    license = stdenv.lib.licenses.gpl2Plus;
    maintainers = [ stdenv.lib.maintainers.sander ];
    platforms = stdenv.lib.platforms.unix;
  };
}