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