git2: fix libssh support

This commit is contained in:
Luca Bruno 2015-11-17 17:52:52 +01:00
parent 43e8590321
commit db4e688df2

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 {
version = "0.23.2";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
cmakeFlags = "-DTHREADSAFE=ON";
nativeBuildInputs = [ cmake python ];
nativeBuildInputs = [ cmake python pkgconfig ];
buildInputs = [ zlib libssh2 openssl http-parser ];
meta = {