summaryrefslogtreecommitdiff
path: root/gnu/packages/xml.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-10-03 12:23:07 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2025-10-03 12:41:52 +0900
commit638c051622508068c7b9e5d23d99438bbcd7e02e (patch)
tree6ae0ae9b9eded304b9839d4f7f56d83e8bb21900 /gnu/packages/xml.scm
parentf9323c458500432ee38ff7fa0382c1571fc12268 (diff)
gnu: perl-xml-libxslt: Update to 2.003000, take 2.
This is a fixup to commit ef22a23ecf, inadvertently pushed too early. * gnu/packages/xml.scm (perl-xml-libxslt) [arguments]: Delete. [native-inputs]: Add pkg-config. [inputs]: Add comment justifying use of older libxml2-2.11. * gnu/packages/patches/perl-xml-libxslt-fix-configure.patch: Delete file. * gnu/local.mk (dist_patch_DATA): De-register it. Fixes: #3175 Change-Id: I850e9bec260bfd527372509bbe8eaa30883840a3
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r--gnu/packages/xml.scm18
1 files changed, 3 insertions, 15 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index b2665e51ae5..fd695d8a8a5 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -707,21 +707,9 @@ XML parser and the high performance DOM implementation.")
(base32
"11s5spf0x5h6qzajfsza28m62z50cilcpvl4iffyafzmfbp5makw"))))
(build-system perl-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'extend-INCLUDE_PATH
- ;; This hack is because the build system does not appear to use
- ;; the pkg-config Cflags, and expects the libxml2 headers to be
- ;; directly available from the FHS location (or C_INCLUDE_PATH),
- ;; but they are nested under a libxml2 subdirectory.
- (lambda* (#:key inputs #:allow-other-keys)
- (setenv "C_INCLUDE_PATH"
- (string-append
- (getenv "C_INCLUDE_PATH")
- ":" (search-input-directory inputs
- "include/libxml2"))))))))
+ (native-inputs (list pkg-config))
+ ;; FIXME: libxml2-2.11 is used instead of latest, due to test failures
+ ;; (see: <https://github.com/shlomif/perl-XML-LibXSLT/issues/8>).
(inputs (list libxml2-2.11 libxslt))
(propagated-inputs (list perl-xml-libxml))
(home-page "https://metacpan.org/release/XML-LibXSLT")