mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
libgit2: Add some more dependencies
This commit is contained in:
parent
0ab9b14e17
commit
6a04f343b3
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, cmake, zlib, python}:
|
||||
{stdenv, fetchurl, cmake, zlib, python, libssh2, openssl, http-parser}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.21.1";
|
||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||
cmakeFlags = "-DTHREADSAFE=ON";
|
||||
|
||||
nativeBuildInputs = [ cmake python ];
|
||||
buildInputs = [ zlib ];
|
||||
buildInputs = [ zlib libssh2 openssl http-parser ];
|
||||
|
||||
meta = {
|
||||
description = "the Git linkable library";
|
||||
|
|
Loading…
Reference in a new issue