nixpkgs/pkgs/development/libraries/git2/default.nix

38 lines
992 B
Nix
Raw Normal View History

2019-12-14 18:26:51 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, python3
2019-06-17 08:47:10 +01:00
, zlib, libssh2, openssl, http-parser, curl
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";
version = "0.27.8";
2018-12-14 15:05:44 +00:00
# keep the version in sync with pythonPackages.pygit2 and libgit2-glib
2013-05-10 21:12:37 +01:00
src = fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
rev = "v${version}";
2019-06-17 08:47:10 +01:00
sha256 = "0wzx8nkyy9m7mx6cks58chjd4289vjsw97mxm9w6f1ggqsfnmbr9";
2013-05-10 21:12:37 +01:00
};
2017-11-09 19:12:54 +00:00
cmakeFlags = [ "-DTHREADSAFE=ON" ];
2014-01-09 13:18:58 +00:00
2019-12-14 18:26:51 +00:00
nativeBuildInputs = [ cmake python3 pkgconfig ];
2017-11-09 19:12:54 +00:00
buildInputs = [ zlib libssh2 openssl http-parser curl ]
++ 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
enableParallelBuilding = true;
doCheck = false; # hangs. or very expensive?
2019-06-17 08:47:10 +01:00
meta = {
description = "The Git linkable library";
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
}