1
0
Fork 1
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:
Shea Levy 2014-10-22 15:37:52 -04:00
parent 0ab9b14e17
commit 6a04f343b3

View file

@ -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";