diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-22 13:24:54 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-22 15:26:45 +0900 |
commit | 026bd8771c32f8b0b9c33cb89f9152833a18ad7d (patch) | |
tree | f1b046311ea1ad84d0dbc6fc075046e4fac256cf /gnu/packages/xml.scm | |
parent | 8167c3e95a9fa211d48ad3e4a65582f458542568 (diff) |
gnu: Add libxml2-next.
* gnu/packages/xml.scm (libxml2-next): New variable.
Change-Id: I1c68243e8c53d6e8a1fbb4e21db2c7926d9730f0
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 64c6e9678b..799d878054 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -27,7 +27,7 @@ ;;; Copyright © 2020 Brett Gilio <brettg@gnu.org> ;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2021 Michael Rohleder <mike@rohleder.de> -;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2021-2023, 2025 Maxim Cournoyer <maxim@guixotic.coop> ;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2021, 2023 Felix Gruber <felgru@posteo.net> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> @@ -254,6 +254,23 @@ hierarchical form with variable field lengths.") project (but it is usable outside of the Gnome platform).") (license license:x11))) +(define-public libxml2-next + (package + (inherit libxml2) + (name "libxml2") + (version "2.14.5") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/libxml2/" + (version-major+minor version)"/libxml2-" + version ".tar.xz")) + (sha256 + (base32 + "0jylv2kkyzih710blg24al7b43iaqg6xsfn52qy865knagrhdl03")))) + (native-inputs (modify-inputs (package-native-inputs libxml2) + (append pkg-config + python-minimal))))) + (define-public libxml2-xpath0 (package/inherit libxml2 (name "libxml2-xpath0") |