git2: fix libssh support

+2 -2
+2 -2
pkgs/development/libraries/git2/default.nix
··· 1 - {stdenv, fetchurl, cmake, zlib, python, libssh2, openssl, http-parser}: 1 + {stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "0.23.2"; ··· 12 12 13 13 cmakeFlags = "-DTHREADSAFE=ON"; 14 14 15 - nativeBuildInputs = [ cmake python ]; 15 + nativeBuildInputs = [ cmake python pkgconfig ]; 16 16 buildInputs = [ zlib libssh2 openssl http-parser ]; 17 17 18 18 meta = {