tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
git2: fix libssh support
Luca Bruno
10 years ago
db4e688d
43e85903
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
git2
default.nix
+2
-2
pkgs/development/libraries/git2/default.nix
···
1
1
-
{stdenv, fetchurl, cmake, zlib, python, libssh2, openssl, http-parser}:
1
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
15
-
nativeBuildInputs = [ cmake python ];
15
15
+
nativeBuildInputs = [ cmake python pkgconfig ];
16
16
buildInputs = [ zlib libssh2 openssl http-parser ];
17
17
18
18
meta = {