summaryrefslogtreecommitdiff
path: root/gnu/packages/xml.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-01-27 16:01:50 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:46 +0100
commit348032e6272e1c453e86490594c0d0f24bac4109 (patch)
tree6a7ac85bf94297d1598cdcaec17a4c28297c3367 /gnu/packages/xml.scm
parentc74a0d5a913eaf6fbe5c04cde85ec826a303d0c8 (diff)
gnu: xmlsec: Update to 1.3.9.
* gnu/packages/xml.scm (xmlsec): Update to 1.3.9. [source]: Switch to git-fetch. [arguments]<#:configure-flags>: Disable dynamic loading support, as it is not required and causes peculiar configuration requirements. [inputs]: Remove libltdl. Change-Id: I538fd6ff14fdc8f52531f7cd6ebd15fa063437f6 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r--gnu/packages/xml.scm13
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 6e730cfab4a..38606df7a1f 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1207,19 +1207,26 @@ XSL-T processor. It also performs any necessary post-processing.")
1207(define-public xmlsec 1207(define-public xmlsec
1208 (package 1208 (package
1209 (name "xmlsec") 1209 (name "xmlsec")
1210 (version "1.3.7") 1210 (version "1.3.9")
1211 (source (origin 1211 (source (origin
1212 (method url-fetch) 1212 (method url-fetch)
1213 (uri (string-append "https://www.aleksey.com/xmlsec/download/" 1213 (uri (string-append "https://www.aleksey.com/xmlsec/download/"
1214 "xmlsec1-" version ".tar.gz")) 1214 "xmlsec1-" version ".tar.gz"))
1215 (sha256 1215 (sha256
1216 (base32 1216 (base32
1217 "1shk40mpaqaf05skgyxa7qxgcarjd6i1fadn2sk0b8lakfv96bnq")))) 1217 "0bxnz4y097gbx1hx945h7j5pdycwbba3bfgmp6nyd1kbgb6whcd6"))))
1218 (build-system gnu-build-system) 1218 (build-system gnu-build-system)
1219 (arguments
1220 (list
1221 #:configure-flags
1222 ;; Enabling dynamic loading requires to set LD_LIBRARY_PATH, instead
1223 ;; separate packages are used, so it has no added value.
1224 #~(list "--disable-crypto-dl"
1225 "--disable-apps-crypto-dl")))
1219 (propagated-inputs ; according to xmlsec1.pc 1226 (propagated-inputs ; according to xmlsec1.pc
1220 (list libxml2 libxslt)) 1227 (list libxml2 libxslt))
1221 (inputs 1228 (inputs
1222 (list gnutls libgcrypt libltdl)) 1229 (list gnutls libgcrypt))
1223 (native-inputs 1230 (native-inputs
1224 (list pkg-config)) 1231 (list pkg-config))
1225 (home-page "https://www.aleksey.com/xmlsec/") 1232 (home-page "https://www.aleksey.com/xmlsec/")