depot/third_party/nixpkgs/pkgs/development/libraries/zeromq/3.x.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
519 B
Nix

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