guix-commits
[Top][All Lists]
Advanced

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

05/10: gnu: minixml: Use G-expressions.


From: guix-commits
Subject: 05/10: gnu: minixml: Use G-expressions.
Date: Sat, 22 Oct 2022 08:02:59 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit b1aedf6ab47bafd24514d6b9cde99c265789ebe5
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Oct 16 02:00:03 2022 +0200

    gnu: minixml: Use G-expressions.
    
    * gnu/packages/xml.scm (minixml)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/xml.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 18a482ac7b..6ea2ead555 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1215,10 +1215,10 @@ Libxml2).")
                 "0cncvb0xhbq2i7rszj6pmcs3b97f0a17j081z0cmcfrrzv8kwrhc"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:configure-flags
-       (list (string-append "LDFLAGS=-Wl,-rpath="
-                            (assoc-ref %outputs "out") "/lib"))
-       #:tests? #f))                    ; tests are run during build
+     (list
+      #:configure-flags
+      #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
+      #:tests? #f))                    ; tests are run during build
     (home-page "https://www.msweet.org/mxml/";)
     (synopsis "Small XML parsing library")
     (description



reply via email to

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