957d9f6d57
Version 4.0.6 is "retired" and also failed to compile because its sha256 hash changed on the upstream site for some reason.
21 lines
564 B
Nix
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 ];
|
|
};
|
|
}
|