guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: libgit2: Propagate openssl and zlib.


From: Ludovic Courtès
Subject: 02/04: gnu: libgit2: Propagate openssl and zlib.
Date: Sat, 11 Feb 2017 16:28:52 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 413f71f3fe2fc608228e1a1e3f9de701c3b3a4cd
Author: Ludovic Courtès <address@hidden>
Date:   Sat Feb 11 21:50:49 2017 +0100

    gnu: libgit2: Propagate openssl and zlib.
    
    * gnu/packages/version-control.scm (libgit2)[inputs]: Move OPENSSL
    to...
    [propagated-inputs]: ... here.  New field.
---
 gnu/packages/version-control.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 976584f..5c371b0 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]