diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-24 20:51:06 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-24 21:34:21 +0200 |
commit | 5b59c77585b41896eda1a40b24b1c3c4a536f080 (patch) | |
tree | eaaf31fb81a44465f592c8529e22e25de5d5f327 /gnu/packages/xml.scm | |
parent | ac9f4819795ee8e2118f9c043a1ef81f45cc6677 (diff) | |
download | patches-5b59c77585b41896eda1a40b24b1c3c4a536f080.tar patches-5b59c77585b41896eda1a40b24b1c3c4a536f080.tar.gz |
gnu: minixml: Update to 2.12.
* gnu/packages/xml.scm (minixml): Update to 2.12.
[arguments]: Add the resulting libraries to the build's RUNPATH.
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 1173dc47bb..4e4fa2da6c 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -960,7 +960,7 @@ Libxml2).") (define-public minixml (package (name "minixml") - (version "2.11") + (version "2.12") (source (origin (method url-fetch/tarbomb) (uri (string-append "https://github.com/michaelrsweet/mxml/" @@ -968,10 +968,13 @@ Libxml2).") "/mxml-" version ".tar.gz")) (sha256 (base32 - "13xsw8vvkxd10vca42ccdyl9rs64lcvhbfz57aknpl3xcfn8mxma")))) + "1z8nqxa4pqdic8wpixkkgg1m2pak9wjikjjxnk3j5i0d29dbgmmg")))) (build-system gnu-build-system) (arguments - `(#:phases + `(#:configure-flags + (list (string-append "LDFLAGS=-Wl,-rpath=" + (assoc-ref %outputs "out") "/lib")) + #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-permissions ;; FIXME: url-fetch/tarbomb resets all permissions to 555/444. |