2007-08-06 18:45:53 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2010-07-13 16:32:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libdaemon-0.14";
|
|
|
|
|
2007-08-06 18:45:53 +00:00
|
|
|
src = fetchurl {
|
2010-07-13 16:32:19 +00:00
|
|
|
url = "${meta.homepage}/${name}.tar.gz";
|
|
|
|
sha256 = "0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx";
|
|
|
|
};
|
|
|
|
|
2017-10-27 22:23:15 +00:00
|
|
|
configureFlags = [ "--disable-lynx" ]
|
|
|
|
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
|
|
|
[ # Can't run this test while cross-compiling
|
|
|
|
"ac_cv_func_setpgrp_void=yes"
|
|
|
|
];
|
2010-07-13 16:32:19 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00: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/;
|
|
|
|
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-07-13 16:32:19 +00:00
|
|
|
|
2016-08-02 21:55:42 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = [ ];
|
2007-08-06 18:45:53 +00:00
|
|
|
};
|
|
|
|
}
|