mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: gnutls: Move which from 'propagated-inputs' to 'native-inputs'.
* gnu/packages/gnutls.scm (gnutls): Move which to 'native-inputs'. Comment on 'propagated-inputs'.
This commit is contained in:
parent
6f96a359eb
commit
d2fcfd3d42
1 changed files with 3 additions and 2 deletions
|
@ -132,14 +132,15 @@ (define-public gnutls
|
||||||
;; independently. This seems suboptimal.
|
;; independently. This seems suboptimal.
|
||||||
"--with-default-trust-store-dir=/etc/ssl/certs")))
|
"--with-default-trust-store-dir=/etc/ssl/certs")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("which" ,which)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.0)
|
`(("guile" ,guile-2.0)
|
||||||
("perl" ,perl)))
|
("perl" ,perl)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
;; These are all in the 'Requires.private' field of gnutls.pc.
|
||||||
`(("libtasn1" ,libtasn1)
|
`(("libtasn1" ,libtasn1)
|
||||||
("nettle" ,nettle)
|
("nettle" ,nettle)
|
||||||
("which" ,which)
|
|
||||||
("zlib" ,guix:zlib)))
|
("zlib" ,guix:zlib)))
|
||||||
(home-page "http://www.gnu.org/software/gnutls/")
|
(home-page "http://www.gnu.org/software/gnutls/")
|
||||||
(synopsis "Transport layer security library")
|
(synopsis "Transport layer security library")
|
||||||
|
|
Loading…
Reference in a new issue