lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 28 lines 685 B view raw
1{ stdenv, fetchFromGitHub, cmake, asciidoc }: 2 3stdenv.mkDerivation rec { 4 name = "zeromq-${version}"; 5 version = "4.2.5"; 6 7 src = fetchFromGitHub { 8 owner = "zeromq"; 9 repo = "libzmq"; 10 rev = "v${version}"; 11 sha256 = "18mjmbhvfhr4463dqayl5hdjfy5rx7na1xsq9dsvlaz9qlr5fskw"; 12 }; 13 14 nativeBuildInputs = [ cmake asciidoc ]; 15 16 enableParallelBuilding = true; 17 18 doCheck = false; # fails all the tests (ctest) 19 20 meta = with stdenv.lib; { 21 branch = "4"; 22 homepage = http://www.zeromq.org; 23 description = "The Intelligent Transport Layer"; 24 license = licenses.gpl3; 25 platforms = platforms.all; 26 maintainers = with maintainers; [ wkennington fpletz ]; 27 }; 28}