diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-02-11 19:20:14 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-02-19 10:33:03 +0800 |
commit | d2fcfd3d425612721658171e05fafe43cfdd53ac (patch) | |
tree | 6aab716c06061c171a860e689571adbb90bbea9c /gnu | |
parent | 6f96a359ebb349527dd2e1d9c62a18f84bc2d164 (diff) | |
download | guix-d2fcfd3d425612721658171e05fafe43cfdd53ac.tar.gz guix-d2fcfd3d425612721658171e05fafe43cfdd53ac.zip |
gnu: gnutls: Move which from 'propagated-inputs' to 'native-inputs'.
* gnu/packages/gnutls.scm (gnutls): Move which to 'native-inputs'.
Comment on 'propagated-inputs'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnutls.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gnutls.scm b/gnu/packages/gnutls.scm index a51d948ce8..b256a97ddf 100644 --- a/gnu/packages/gnutls.scm +++ b/gnu/packages/gnutls.scm @@ -132,14 +132,15 @@ living in the same process.") ;; independently. This seems suboptimal. "--with-default-trust-store-dir=/etc/ssl/certs"))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ("which" ,which))) (inputs `(("guile" ,guile-2.0) ("perl" ,perl))) (propagated-inputs + ;; These are all in the 'Requires.private' field of gnutls.pc. `(("libtasn1" ,libtasn1) ("nettle" ,nettle) - ("which" ,which) ("zlib" ,guix:zlib))) (home-page "http://www.gnu.org/software/gnutls/") (synopsis "Transport layer security library") |