diff options
author | 宋文武 <iyzsong@gmail.com> | 2016-02-17 20:52:41 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-02-17 20:57:55 +0800 |
commit | 972f4e5082eb7f08995dc7baae653ab48f9f5805 (patch) | |
tree | 03f0478cd9c8ef27b018913af7c4647fbf37ae36 /gnu/packages/gnunet.scm | |
parent | dc0502516592446bccdd82ea1519d31e803de2f4 (diff) | |
download | guix-972f4e5082eb7f08995dc7baae653ab48f9f5805.tar guix-972f4e5082eb7f08995dc7baae653ab48f9f5805.tar.gz |
gnu: gnunet: Install NSS module.
* gnu/packages/gnunet.scm (gnunet)[arguments]: Pass '--with-nssdir'.
Diffstat (limited to 'gnu/packages/gnunet.scm')
-rw-r--r-- | gnu/packages/gnunet.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 7a7ade02f4..e3f64ef324 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -231,7 +231,9 @@ supports HTTPS, HTTPS and GnuTLS.") `(("pkg-config" ,pkg-config) ("python" ,python-2))) (arguments - '(#:parallel-tests? #f + '(#:configure-flags + (list (string-append "--with-nssdir=" %output "/lib")) + #:parallel-tests? #f ;; test_gnunet_service_arm fails; reported upstream #:tests? #f #:phases |