git2: fix libssh support

This commit is contained in:
Luca Bruno
2015-11-17 17:55:20 +01:00
parent 43e8590321
commit db4e688df2
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, cmake, zlib, python, libssh2, openssl, http-parser}: {stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.23.2"; version = "0.23.2";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
cmakeFlags = "-DTHREADSAFE=ON"; cmakeFlags = "-DTHREADSAFE=ON";
nativeBuildInputs = [ cmake python ]; nativeBuildInputs = [ cmake python pkgconfig ];
buildInputs = [ zlib libssh2 openssl http-parser ]; buildInputs = [ zlib libssh2 openssl http-parser ];
meta = { meta = {