Merge pull request #65049 from matthewbauer/zmq-enable-drafts

zmq: enable drafts api
This commit is contained in:
Matthew Bauer
2019-07-25 09:54:00 -04:00
committed by GitHub
2 changed files with 7 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, asciidoc }:
{ stdenv, fetchFromGitHub, cmake, asciidoc, enableDrafts ? false }:
stdenv.mkDerivation rec {
name = "zeromq-${version}";
@@ -17,6 +17,8 @@ stdenv.mkDerivation rec {
doCheck = false; # fails all the tests (ctest)
cmakeFlags = if enableDrafts then [ "-DENABLE_DRAFTS=ON" ] else null;
meta = with stdenv.lib; {
branch = "4";
homepage = http://www.zeromq.org;