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

29 lines
685 B
Nix
Raw Normal View History

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