mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: libgit2: Propagate openssl and zlib.
* gnu/packages/version-control.scm (libgit2)[inputs]: Move OPENSSL to... [propagated-inputs]: ... here. New field.
This commit is contained in:
parent
71e0f21781
commit
413f71f3fe
1 changed files with 5 additions and 2 deletions
|
@ -348,10 +348,13 @@ (define-public libgit2
|
||||||
(inputs
|
(inputs
|
||||||
`(("libssh2" ,libssh2)
|
`(("libssh2" ,libssh2)
|
||||||
("libcurl" ,curl)
|
("libcurl" ,curl)
|
||||||
("python" ,python-wrapper)
|
("python" ,python-wrapper)))
|
||||||
("openssl" ,openssl)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(propagated-inputs
|
||||||
|
;; These two libraries are in 'Requires.private' in libgit2.pc.
|
||||||
|
`(("openssl" ,openssl)
|
||||||
|
("zlib" ,zlib)))
|
||||||
(home-page "https://libgit2.github.com/")
|
(home-page "https://libgit2.github.com/")
|
||||||
(synopsis "Library providing Git core methods")
|
(synopsis "Library providing Git core methods")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue