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 1 { lib, collectd }: 2 2 3 - collectd.overrideAttrs (oldAttrs: { 3 + collectd.overrideAttrs (prevAttrs: { 4 4 pname = "libcollectdclient"; 5 + 5 6 buildInputs = [ ]; 6 7 7 - configureFlags = (oldAttrs.configureFlags or [ ]) ++ [ 8 + configureFlags = (prevAttrs.configureFlags or [ ]) ++ [ 9 + "--with-perl-bindings=no" 8 10 "--disable-daemon" 9 11 "--disable-all-plugins" 10 12 ]; 11 13 12 14 postInstall = "rm -rf $out/{bin,etc,sbin,share}"; 13 15 14 - meta = with lib; { 16 + meta = { 15 17 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 18 + homepage = "https://collectd.org"; 19 + license = lib.licenses.gpl2Plus; 20 + platforms = lib.platforms.unix; 21 + maintainers = with lib.maintainers; [ 22 + sheenobu 23 + bjornfor 22 24 ]; 23 25 }; 24 26 })