3
0
Fork 0
forked from mirrors/nixpkgs

libcollectdclient: fix evaluation

This commit is contained in:
Jörg Thalheim 2018-12-21 13:40:40 +01:00
parent e7ad85552e
commit 652248e0e5
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA

View file

@ -5,11 +5,7 @@ collectd.overrideAttrs (oldAttrs: {
name = "libcollectdclient-${collectd.version}";
buildInputs = [ ];
NIX_CFLAGS_COMPILE = oldAttrs.NIX_CFLAGS_COMPILE ++ [
"-Wno-error=unused-function"
];
configureFlags = oldAttrs.configureFlags ++ [
configureFlags = (oldAttrs.configureFlags or []) ++ [
"--disable-daemon"
"--disable-all-plugins"
];