Files
nixpkgs/pkgs/development/libraries/libdaemon/default.nix
T

24 lines
533 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
2010-07-13 16:32:19 +00:00
stdenv.mkDerivation rec {
name = "libdaemon-0.14";
src = fetchurl {
2010-07-13 16:32:19 +00:00
url = "${meta.homepage}/${name}.tar.gz";
sha256 = "0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx";
};
configureFlags = [ "--disable-lynx" ];
meta = {
2014-08-24 16:21:08 +02:00
description = "Lightweight C library that eases the writing of UNIX daemons";
2010-07-13 16:32:19 +00:00
homepage = http://0pointer.de/lennart/projects/libdaemon/;
license = stdenv.lib.licenses.lgpl2Plus;
2010-07-13 16:32:19 +00:00
2016-08-03 00:55:42 +03:00
platforms = stdenv.lib.platforms.unix;
2013-08-16 23:44:33 +02:00
maintainers = [ ];
};
}