Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

zeromq3: Refactor

+7 -4
+7 -4
pkgs/development/libraries/zeromq/3.x.nix
··· 1 - {stdenv, fetchurl, libuuid}: 1 + { stdenv, fetchurl, libuuid }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "zeromq-3.2.4"; 4 + name = "zeromq-3.2.5"; 5 5 6 6 src = fetchurl { 7 7 url = "http://download.zeromq.org/${name}.tar.gz"; 8 - sha256 = "0n9gfhwgkwq08kvvgk5zxjga08v628ij5chddk5w4ravr10s35nz"; 8 + sha256 = "0911r7q4i1x9gnfinj39vx08fnz59mf05vl75zdkws36lib3wr89"; 9 9 }; 10 10 11 11 buildInputs = [ libuuid ]; 12 12 13 - meta = { 13 + meta = with stdenv.lib; { 14 14 branch = "3"; 15 15 homepage = "http://www.zeromq.org"; 16 16 description = "The Intelligent Transport Layer"; 17 + license = licenses.gpl3; 18 + platform = platforms.all; 19 + maintainers = with maintainers; [ wkennington ]; 17 20 }; 18 21 }