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

22 lines
521 B
Nix
Raw Normal View History

2015-03-12 04:48:10 +03:00
{ stdenv, fetchurl, libuuid }:
stdenv.mkDerivation rec {
2015-03-12 04:48:10 +03:00
name = "zeromq-3.2.5";
src = fetchurl {
url = "http://download.zeromq.org/${name}.tar.gz";
2015-03-12 04:48:10 +03:00
sha256 = "0911r7q4i1x9gnfinj39vx08fnz59mf05vl75zdkws36lib3wr89";
};
buildInputs = [ libuuid ];
2015-03-12 04:48:10 +03:00
meta = with stdenv.lib; {
2014-01-08 20:06:18 +04:00
branch = "3";
homepage = "http://www.zeromq.org";
description = "The Intelligent Transport Layer";
2015-03-12 04:48:10 +03:00
license = licenses.gpl3;
platform = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}