37 lines
927 B
Nix
37 lines
927 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, python
|
|
, zlib, libssh2, openssl, http-parser, curl
|
|
, libiconv, Security
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.27.4";
|
|
name = "libgit2-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libgit2";
|
|
repo = "libgit2";
|
|
rev = "v${version}";
|
|
sha256 = "1cmc8ldhpyp62pswb7dmjjya3ng0ssaggcsxs1labvp6xyxjvp6s";
|
|
};
|
|
|
|
cmakeFlags = [ "-DTHREADSAFE=ON" ];
|
|
|
|
nativeBuildInputs = [ cmake python pkgconfig ];
|
|
|
|
buildInputs = [ zlib libssh2 openssl http-parser curl ]
|
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
propagatedBuildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = false; # hangs. or very expensive?
|
|
|
|
meta = {
|
|
description = "The Git linkable library";
|
|
homepage = https://libgit2.github.com/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = with stdenv.lib.platforms; all;
|
|
};
|
|
}
|