diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-02-11 21:50:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-02-11 22:28:37 +0100 |
commit | 413f71f3fe2fc608228e1a1e3f9de701c3b3a4cd (patch) | |
tree | cd5a688f82eda830dd8df64ca27c64ae1ef23005 | |
parent | 71e0f217818b38dde743d14d03a6a3c13256924b (diff) | |
download | guix-413f71f3fe2fc608228e1a1e3f9de701c3b3a4cd.tar guix-413f71f3fe2fc608228e1a1e3f9de701c3b3a4cd.tar.gz |
gnu: libgit2: Propagate openssl and zlib.
* gnu/packages/version-control.scm (libgit2)[inputs]: Move OPENSSL
to...
[propagated-inputs]: ... here. New field.
-rw-r--r-- | gnu/packages/version-control.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 976584fa73..5c371b0ba0 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -348,10 +348,13 @@ everything from small to very large projects with speed and efficiency.") (inputs `(("libssh2" ,libssh2) ("libcurl" ,curl) - ("python" ,python-wrapper) - ("openssl" ,openssl))) + ("python" ,python-wrapper))) (native-inputs `(("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/") (synopsis "Library providing Git core methods") (description |