guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

14/150: gnu: python-pyzmq: Fix #:configure-flags type.


From: guix-commits
Subject: 14/150: gnu: python-pyzmq: Fix #:configure-flags type.
Date: Sun, 24 Apr 2022 05:12:16 -0400 (EDT)

lbraun pushed a commit to branch wip-python-pep517
in repository guix.

commit ee4fa322dbfed09aa32457bfcdee5ff1078be720
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Thu Nov 25 12:34:47 2021 +0100

    gnu: python-pyzmq: Fix #:configure-flags type.
    
    Should be alist.
    
    * gnu/packages/python-xyz.scm (python-pyzmq)[#:configure-flags]: Turn
    into alist.
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1c77e9dbd4..3a6a62ac75 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10171,7 +10171,7 @@ applications.")
     (build-system python-build-system)
     (arguments
      `(#:configure-flags
-       (list (string-append "--zmq=" (assoc-ref %build-inputs "zeromq")))
+       `(@ ("--zmq" . ,(assoc-ref %build-inputs "zeromq")))
        #:phases
        (modify-phases %standard-phases
          (add-before 'check 'build-extensions



reply via email to

[Prev in Thread] Current Thread [Next in Thread]