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

23 lines
517 B
Nix
Raw Normal View History

2015-03-12 02:48:10 +01:00
{ stdenv, fetchurl, libuuid }:
stdenv.mkDerivation rec {
2015-03-12 02:48:10 +01:00
name = "zeromq-3.2.5";
src = fetchurl {
url = "http://download.zeromq.org/${name}.tar.gz";
2015-03-12 02:48:10 +01:00
sha256 = "0911r7q4i1x9gnfinj39vx08fnz59mf05vl75zdkws36lib3wr89";
};
buildInputs = [ libuuid ];
doCheck = false; # fails all the tests (ctest)
2015-03-12 02:48:10 +01:00
meta = with stdenv.lib; {
2014-01-08 17:06:18 +01:00
branch = "3";
homepage = http://www.zeromq.org;
description = "The Intelligent Transport Layer";
2015-03-12 02:48:10 +01:00
license = licenses.gpl3;
platforms = platforms.all;
};
}