me
/
guix
Archived
1
0
Fork 0

gnu: minixml: Use G-expressions.

* gnu/packages/xml.scm (minixml)[arguments]:
Rewrite as G-expressions.
master
Tobias Geerinckx-Rice 2022-10-16 02:00:03 +02:00
parent dc6186f7eb
commit b1aedf6ab4
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 4 deletions

View File

@ -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