summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <[email protected]>2021-07-19 03:51:51 +0000
committerLudovic Courtès <[email protected]>2021-07-19 19:57:51 +0200
commitf8790ba4b474201bfe5fb8523ef829d174a5de2e (patch)
tree7faf44c569c3e08776cf0209628ea3e008e149cd
parent51157d474fef10288dfb6b2fb98c20932fa1e8a3 (diff)
gnu: zeromq: Enable DRAFTs.
* gnu/packages/networking.scm (zeromq)[arguments]<#:configure-flags>: Pass --enable-drafts. Signed-off-by: Ludovic Courtès <[email protected]>
-rw-r--r--gnu/packages/networking.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 304c8a8703..885ae9117c 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -43,6 +43,7 @@
;;; Copyright © 2020 Michael Rohleder <[email protected]>
;;; Copyright © 2021 Hartmut Goebel <[email protected]>
;;; Copyright © 2021 Justin Veilleux <[email protected]>
+;;; Copyright © 2021 Vinicius Monego <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1029,7 +1030,8 @@ transparently check connection attempts against an access control list.")
(sha256
(base32 "1rf3jmi36ms8jh2g5cvi253h43l6xdfq0r7mvp95va7mi4d014y5"))))
(build-system gnu-build-system)
- (arguments '(#:configure-flags '("--disable-static")))
+ (arguments '(#:configure-flags '("--disable-static"
+ "--enable-drafts")))
(home-page "https://zeromq.org")
(synopsis "Library for message-based applications")
(description