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

29 lines
685 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, asciidoc }:
2014-05-01 04:52:21 -07:00
stdenv.mkDerivation rec {
2016-11-09 15:29:13 -08:00
name = "zeromq-${version}";
2018-07-23 12:58:10 -07:00
version = "4.2.5";
2014-05-01 04:52:21 -07:00
src = fetchFromGitHub {
owner = "zeromq";
repo = "libzmq";
rev = "v${version}";
2018-07-23 12:58:10 -07:00
sha256 = "18mjmbhvfhr4463dqayl5hdjfy5rx7na1xsq9dsvlaz9qlr5fskw";
2014-05-01 04:52:21 -07:00
};
nativeBuildInputs = [ cmake asciidoc ];
enableParallelBuilding = true;
doCheck = false; # fails all the tests (ctest)
2015-03-11 18:48:23 -07:00
meta = with stdenv.lib; {
2014-05-01 04:52:21 -07:00
branch = "4";
homepage = http://www.zeromq.org;
2014-05-01 04:52:21 -07:00
description = "The Intelligent Transport Layer";
2015-03-11 18:48:23 -07:00
license = licenses.gpl3;
platforms = platforms.all;
2016-11-09 15:29:13 -08:00
maintainers = with maintainers; [ wkennington fpletz ];
2014-05-01 04:52:21 -07:00
};
}