nixpkgs/pkgs/development/libraries/zeromq/4.x.nix
Peter Simons 957d9f6d57 zeromq: update to version 4.1.1
Version 4.0.6 is "retired" and also failed to compile because its sha256
hash changed on the upstream site for some reason.
2015-06-10 10:07:46 +02:00

21 lines
564 B
Nix

{ stdenv, fetchurl, libuuid, pkgconfig, libsodium }:
stdenv.mkDerivation rec {
name = "zeromq-4.1.1";
src = fetchurl {
url = "http://download.zeromq.org/${name}.tar.gz";
sha256 = "1nxqvb1n8yy6953nv095riirrpmw4w340qd6sjm4cfdl0rbixmj3";
};
buildInputs = [ libuuid pkgconfig libsodium ];
meta = with stdenv.lib; {
branch = "4";
homepage = "http://www.zeromq.org";
description = "The Intelligent Transport Layer";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}