gnu: zeromq: Enable DRAFTs.
* gnu/packages/networking.scm (zeromq)[arguments]<#:configure-flags>: Pass --enable-drafts. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
51157d474f
commit
f8790ba4b4
|
@ -43,6 +43,7 @@
|
||||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li>
|
;;; Copyright © 2021 Justin Veilleux <terramorpha@cock.li>
|
||||||
|
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1029,7 +1030,8 @@ transparently check connection attempts against an access control list.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1rf3jmi36ms8jh2g5cvi253h43l6xdfq0r7mvp95va7mi4d014y5"))))
|
(base32 "1rf3jmi36ms8jh2g5cvi253h43l6xdfq0r7mvp95va7mi4d014y5"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:configure-flags '("--disable-static")))
|
(arguments '(#:configure-flags '("--disable-static"
|
||||||
|
"--enable-drafts")))
|
||||||
(home-page "https://zeromq.org")
|
(home-page "https://zeromq.org")
|
||||||
(synopsis "Library for message-based applications")
|
(synopsis "Library for message-based applications")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue