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