diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-06-06 14:33:58 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-06-11 16:07:08 +0200 |
commit | e4aab734875a40f991b6ecba1247be6fc248f15f (patch) | |
tree | f9e87c5a2ea74e9be53e56c520ab736b30bfc19e /gnu/packages/xml.scm | |
parent | c71c8b97a2af6fabdaa954910e06a30986c8aaee (diff) | |
download | guix-e4aab734875a40f991b6ecba1247be6fc248f15f.tar guix-e4aab734875a40f991b6ecba1247be6fc248f15f.tar.gz |
gnu: xmlsec: Enable gnutls support.
* gnu/packages/xml.scm (xmlsec)[native-inputs]: Add pkg-config.
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r-- | gnu/packages/xml.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index d5967f7966..e62bfa7e54 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com> -;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2015 Raimon Grau <raimonster@gmail.com> @@ -40,7 +40,8 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system perl) #:use-module (guix build-system python) - #:use-module (gnu packages linux)) + #:use-module (gnu packages linux) + #:use-module (gnu packages pkg-config)) (define-public expat (package @@ -636,6 +637,8 @@ XSL-T processor. It also performs any necessary post-processing.") `(("gnutls" ,gnutls) ("libgcrypt" ,libgcrypt) ("libltdl" ,libltdl))) + (native-inputs + `(("pkg-config" ,pkg-config))) (home-page "http://www.libexpat.org/") (synopsis "XML Security Library") (description |