diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-08-24 17:08:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:06 +0200 |
commit | 67039cda7539066ae9c2b44e71aa25c6aae97921 (patch) | |
tree | 95653555f1ff0bf19981fd539f256aee17b8e4ab /gnu/packages/xml.scm | |
parent | f246666d323e14ad1c8b6411147c082e4efb121d (diff) | |
download | guix-67039cda7539066ae9c2b44e71aa25c6aae97921.tar.gz guix-67039cda7539066ae9c2b44e71aa25c6aae97921.zip |
gnu: perl-xml-xpath: Update to 1.48.
* gnu/packages/xml.scm (perl-xml-xpath): Update to 1.48.
[native-inputs]: Add perl-test-leaktrace.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index e05685ad5e..8995b07328 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1040,14 +1040,14 @@ RSS 0.91, RSS 1.0, RSS 2.0, Atom") (define-public perl-xml-xpath (package (name "perl-xml-xpath") - (version "1.44") + (version "1.48") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/" "XML-XPath-" version ".tar.gz")) (sha256 (base32 - "03yxj7w5a43ibbpiqsvb3lswj2b71dydsx4rs2fw0p8n0l3i3j8w")))) + "1kch6w4zk7rzfimbwakz8qyhjhrvnp97158af0p5p7i3dgimpivv")))) (build-system perl-build-system) (arguments (list @@ -1069,7 +1069,7 @@ RSS 0.91, RSS 1.0, RSS 2.0, Atom") (unsetenv "PERL5LIB") (invoke/quiet (string-append #$output "/bin/xpath")))))))) (native-inputs - (list perl-path-tiny)) + (list perl-path-tiny perl-test-leaktrace)) (propagated-inputs (list perl-xml-parser)) (home-page "https://metacpan.org/release/XML-XPath") |