libdaemon: cleanup with a mass rebuild

This commit is contained in:
Jan Malakhovski 2018-09-04 17:54:47 +00:00
parent d5ddae51bd
commit d0c6bf0a73

View File

@ -1,6 +1,6 @@
{stdenv, fetchurl}: {stdenv, fetchurl}:
stdenv.mkDerivation (rec { stdenv.mkDerivation rec {
name = "libdaemon-0.14"; name = "libdaemon-0.14";
src = fetchurl { src = fetchurl {
@ -8,6 +8,8 @@ stdenv.mkDerivation (rec {
sha256 = "0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx"; sha256 = "0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx";
}; };
patches = [ ./fix-includes.patch ];
configureFlags = [ "--disable-lynx" ] configureFlags = [ "--disable-lynx" ]
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
[ # Can't run this test while cross-compiling [ # Can't run this test while cross-compiling
@ -16,16 +18,8 @@ stdenv.mkDerivation (rec {
meta = { meta = {
description = "Lightweight C library that eases the writing of UNIX daemons"; description = "Lightweight C library that eases the writing of UNIX daemons";
homepage = http://0pointer.de/lennart/projects/libdaemon/; homepage = http://0pointer.de/lennart/projects/libdaemon/;
license = stdenv.lib.licenses.lgpl2Plus; license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
maintainers = [ ];
}; };
} // stdenv.lib.optionalAttrs stdenv.hostPlatform.isMusl { }
# This patch should be applied unconditionally, but doing so will cause mass rebuild.
patches = ./fix-includes.patch;
})