guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: libxslt: Fix cross-compilation.


From: guix-commits
Subject: 02/03: gnu: libxslt: Fix cross-compilation.
Date: Mon, 16 Dec 2019 10:33:23 -0500 (EST)

mothacehe pushed a commit to branch core-updates
in repository guix.

commit 60825fdd18d56bec0aefd1760bd663f70e7ff1cc
Author: Mathieu Othacehe <address@hidden>
Date:   Mon Dec 16 13:39:05 2019 +0100

    gnu: libxslt: Fix cross-compilation.
    
    This package native build was relying on xz as an implicit input. In fact
    libxslt is linking against liblzma, and xz is thus an input.
    
    * gnu/packages/xml.scm (libxslt)[inputs]: Add xz.
---
 gnu/packages/xml.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 86c8eb8..5ccbc69 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -228,7 +228,8 @@ project (but it is usable outside of the Gnome platform).")
     (inputs `(("libgcrypt" ,libgcrypt)
               ("libxml2" ,libxml2)
               ("python" ,python-minimal-wrapper)
-              ("zlib" ,zlib)))
+              ("zlib" ,zlib)
+              ("xz" ,xz)))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]