diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2023-11-16 00:11:35 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-11-21 22:00:54 +0100 |
commit | 60db3a6b3f6e4d1bd751d04b7d9ad1e894febf93 (patch) | |
tree | 3f1f0f56d319f87a4ceb92a1235eed9d5409b9df /gnu | |
parent | 7b95445865b8687eff0f8af678cfd3a4da281066 (diff) | |
download | guix-60db3a6b3f6e4d1bd751d04b7d9ad1e894febf93.tar.gz guix-60db3a6b3f6e4d1bd751d04b7d9ad1e894febf93.zip |
gnu: libxmlb: Add xz to propagated-inputs.
liblzma is present in Requires.private in the pkg-config definition of xmlb.
* gnu/packages/xml.scm (libxmlb) [propagated-inputs]: Add xz.
Change-Id: I7189b47d879561ffd1902079d20054a287ffaf20
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xml.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index ec68deb31a..c6ddae50ae 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -107,7 +107,7 @@ (inputs (list appstream-glib glib)) (propagated-inputs - (list `(,zstd "lib"))) ; in Requires.private of xmlb.pc + (list xz `(,zstd "lib"))) ; in Requires.private of xmlb.pc (synopsis "Library to help create and query binary XML blobs") (description "Libxmlb library takes XML source, and converts it to a structured binary representation with a deduplicated string table; where the |