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

29 lines
673 B
Nix
Raw Normal View History

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