From 30db6f177d3af49d02a5a92e19969af0af44427a Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Tue, 30 Dec 2014 11:55:07 -0800 Subject: [PATCH] net_snmp: 5.7.2.1 -> 5.7.3 --- pkgs/servers/monitoring/net-snmp/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index 9e3ebc3795d..28ad5819438 100644 --- a/pkgs/servers/monitoring/net-snmp/default.nix +++ b/pkgs/servers/monitoring/net-snmp/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoreconfHook, file, openssl, perl, unzip }: stdenv.mkDerivation rec { - name = "net-snmp-5.7.2.1"; + name = "net-snmp-5.7.3"; src = fetchurl { url = "mirror://sourceforge/net-snmp/${name}.zip"; - sha256 = "1nj3b2x4fhsh82nra99128vqp2lfw5wx91ka8nqwzxvik59hb4dc"; + sha256 = "0gkss3zclm23zwpqfhddca8278id7pk6qx1mydpimdrrcndwgpz8"; }; preConfigure = @@ -31,9 +31,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { description = "Clients and server for the SNMP network monitoring protocol"; homepage = http://net-snmp.sourceforge.net/; - license = "bsd"; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = with maintainers; [ wkennington ]; }; }