nckx pushed a commit to branch master
in repository guix.
commit 3825b44448e1ba60b16b4169bdab391755297cfb
Author: Tobias Geerinckx-Rice <[email protected]>
Date: Sat Oct 27 04:43:33 2018 +0200
gnu: xmlsec-nss: Fix tests (and hence build).
* gnu/packages/xml.scm (xmlsec-nss)[native-inputs]: Add nss:bin to
provide the certutil command.
---
gnu/packages/xml.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 4e4fa2d..9aa2800 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -952,6 +952,10 @@ Libxml2).")
(package
(inherit xmlsec)
(name "xmlsec-nss")
+ (native-inputs
+ ;; For tests.
+ `(("nss:bin" ,nss "bin") ; for certutil
+ ,@(package-native-inputs xmlsec)))
(inputs
`(("nss" ,nss)
("libltdl" ,libltdl)))