libcollectdclient: fix build

I unified the `meta` field from `collectd` here too.

authored by philiptaron.tngl.sh and committed by Bjørn Forsman 16252c01 97734f4a

+11 -9
+11 -9
pkgs/by-name/li/libcollectdclient/package.nix
··· 1 { lib, collectd }: 2 3 - collectd.overrideAttrs (oldAttrs: { 4 pname = "libcollectdclient"; 5 buildInputs = [ ]; 6 7 - configureFlags = (oldAttrs.configureFlags or [ ]) ++ [ 8 "--disable-daemon" 9 "--disable-all-plugins" 10 ]; 11 12 postInstall = "rm -rf $out/{bin,etc,sbin,share}"; 13 14 - meta = with lib; { 15 description = "C Library for collectd, a daemon which collects system performance statistics periodically"; 16 - homepage = "http://collectd.org"; 17 - license = licenses.gpl2; 18 - platforms = platforms.linux; # TODO: collectd may be linux but the C client may be more portable? 19 - maintainers = [ 20 - maintainers.sheenobu 21 - maintainers.bjornfor 22 ]; 23 }; 24 })
··· 1 { lib, collectd }: 2 3 + collectd.overrideAttrs (prevAttrs: { 4 pname = "libcollectdclient"; 5 + 6 buildInputs = [ ]; 7 8 + configureFlags = (prevAttrs.configureFlags or [ ]) ++ [ 9 + "--with-perl-bindings=no" 10 "--disable-daemon" 11 "--disable-all-plugins" 12 ]; 13 14 postInstall = "rm -rf $out/{bin,etc,sbin,share}"; 15 16 + meta = { 17 description = "C Library for collectd, a daemon which collects system performance statistics periodically"; 18 + homepage = "https://collectd.org"; 19 + license = lib.licenses.gpl2Plus; 20 + platforms = lib.platforms.unix; 21 + maintainers = with lib.maintainers; [ 22 + sheenobu 23 + bjornfor 24 ]; 25 }; 26 })