gnu: gnutls: Make p11-kit a propagated input.
Because p11-kit appears in the gnutls.pc file, it needs to be a propagated
input.
This was a regression introduced in 28a13226fd
which broke things like HTTPS support in curl, which then broke Git clones
from repositories using HTTPS.
* gnu/packages/tls.scm (gnutls)[inputs]: Move p11-kit from here.
[propagated-inputs]: To here.
This commit is contained in:
parent
6877e7f97a
commit
8a59448770
1 changed files with 7 additions and 7 deletions
|
@ -255,18 +255,18 @@ living in the same process.")
|
||||||
`(("datefudge" ,datefudge))) ;tests rely on 'datefudge'
|
`(("datefudge" ,datefudge))) ;tests rely on 'datefudge'
|
||||||
("util-linux" ,util-linux))) ;one test needs 'setsid'
|
("util-linux" ,util-linux))) ;one test needs 'setsid'
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-3.0)
|
`(("guile" ,guile-3.0)))
|
||||||
,@(let ((system (or (%current-target-system)
|
|
||||||
(%current-system))))
|
|
||||||
(if (string-prefix? "mips64el" system)
|
|
||||||
'()
|
|
||||||
`(("p11-kit" ,p11-kit))))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; These are all in the 'Requires.private' field of gnutls.pc.
|
;; These are all in the 'Requires.private' field of gnutls.pc.
|
||||||
`(("libtasn1" ,libtasn1)
|
`(("libtasn1" ,libtasn1)
|
||||||
("libidn2" ,libidn2)
|
("libidn2" ,libidn2)
|
||||||
("nettle" ,nettle)
|
("nettle" ,nettle)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)
|
||||||
|
,@(let ((system (or (%current-target-system)
|
||||||
|
(%current-system))))
|
||||||
|
(if (string-prefix? "mips64el" system)
|
||||||
|
'()
|
||||||
|
`(("p11-kit" ,p11-kit))))))
|
||||||
(home-page "https://www.gnu.org/software/gnutls/")
|
(home-page "https://www.gnu.org/software/gnutls/")
|
||||||
(synopsis "Transport layer security library")
|
(synopsis "Transport layer security library")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue