29 lines
685 B
Nix
29 lines
685 B
Nix
{ stdenv, fetchFromGitHub, cmake, asciidoc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "zeromq-${version}";
|
|
version = "4.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zeromq";
|
|
repo = "libzmq";
|
|
rev = "v${version}";
|
|
sha256 = "18mjmbhvfhr4463dqayl5hdjfy5rx7na1xsq9dsvlaz9qlr5fskw";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake asciidoc ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # fails all the tests (ctest)
|
|
|
|
meta = with stdenv.lib; {
|
|
branch = "4";
|
|
homepage = http://www.zeromq.org;
|
|
description = "The Intelligent Transport Layer";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington fpletz ];
|
|
};
|
|
}
|