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