2020-11-30 15:54:49 -08:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkg-config, python3
|
2020-04-12 12:59:55 -07:00
|
|
|
, zlib, libssh2, openssl, pcre, http-parser
|
2017-11-09 11:12:54 -08:00
|
|
|
, libiconv, Security
|
|
|
|
}:
|
2013-05-10 13:12:37 -07:00
|
|
|
|
2019-06-17 00:47:10 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libgit2";
|
2020-11-30 15:54:49 -08:00
|
|
|
version = "1.1.0";
|
2020-02-05 14:50:47 -08:00
|
|
|
# keep the version in sync with python3.pkgs.pygit2 and libgit2-glib
|
2013-05-10 13:12:37 -07:00
|
|
|
|
2017-09-14 05:58:37 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libgit2";
|
|
|
|
repo = "libgit2";
|
|
|
|
rev = "v${version}";
|
2020-11-30 15:54:49 -08:00
|
|
|
sha256 = "1vj7q7b8j3smiyi1acbc5x86lqk00igdm2adjnqs9n011i13rykl";
|
2013-05-10 13:12:37 -07:00
|
|
|
};
|
|
|
|
|
2020-03-09 15:01:23 -07:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DTHREADSAFE=ON"
|
|
|
|
"-DUSE_HTTP_PARSER=system"
|
|
|
|
];
|
2014-01-09 05:18:58 -08:00
|
|
|
|
2020-11-30 15:54:49 -08:00
|
|
|
nativeBuildInputs = [ cmake python3 pkg-config ];
|
2017-09-14 05:58:37 -07:00
|
|
|
|
2020-04-12 12:59:55 -07:00
|
|
|
buildInputs = [ zlib libssh2 openssl pcre http-parser ]
|
2017-11-09 11:12:54 -08:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
|
2019-06-17 00:47:10 -07:00
|
|
|
propagatedBuildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
2013-05-10 13:12:37 -07:00
|
|
|
|
2017-09-14 05:58:37 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # hangs. or very expensive?
|
|
|
|
|
2019-06-17 00:47:10 -07:00
|
|
|
meta = {
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "The Git linkable library";
|
2020-03-09 15:01:23 -07:00
|
|
|
homepage = "https://libgit2.github.com/";
|
2019-06-17 00:47:10 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2013-05-10 13:12:37 -07:00
|
|
|
};
|
2019-06-17 00:47:10 -07:00
|
|
|
}
|