nixpkgs/pkgs/development/libraries/zeromq/4.x.nix

22 lines
564 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libuuid, pkgconfig, libsodium }:
2014-05-01 13:52:21 +02:00
stdenv.mkDerivation rec {
name = "zeromq-4.1.1";
2014-05-01 13:52:21 +02:00
src = fetchurl {
url = "http://download.zeromq.org/${name}.tar.gz";
sha256 = "1nxqvb1n8yy6953nv095riirrpmw4w340qd6sjm4cfdl0rbixmj3";
2014-05-01 13:52:21 +02:00
};
buildInputs = [ libuuid pkgconfig libsodium ];
2014-05-01 13:52:21 +02:00
2015-03-12 02:48:23 +01:00
meta = with stdenv.lib; {
2014-05-01 13:52:21 +02:00
branch = "4";
homepage = "http://www.zeromq.org";
description = "The Intelligent Transport Layer";
2015-03-12 02:48:23 +01:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
2014-05-01 13:52:21 +02:00
};
}