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

33 lines
930 B
Nix
Raw Normal View History

2017-11-05 06:03:17 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, cmake, zlib, python, libssh2, openssl, curl, http-parser, libiconv }:
2013-05-10 22:12:37 +02:00
stdenv.mkDerivation (rec {
2013-05-10 22:12:37 +02:00
name = "libgit2-${version}";
2017-11-05 06:03:17 +01:00
version = "0.26.0";
# keep the version in sync with pythonPackages.pygit2 and gnome3.libgit2-glib
2013-05-10 22:12:37 +02:00
src = fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
rev = "v${version}";
2017-11-05 06:03:17 +01:00
sha256 = "0zrrmfkfhd2xb4879z5khjb6xsdklrm01f1lscrs2ks68v25fk78";
2013-05-10 22:12:37 +02:00
};
2014-01-09 14:18:58 +01:00
cmakeFlags = "-DTHREADSAFE=ON";
2015-11-17 17:52:52 +01:00
nativeBuildInputs = [ cmake python pkgconfig ];
buildInputs = [ zlib libssh2 openssl http-parser curl ];
2013-05-10 22:12:37 +02:00
enableParallelBuilding = true;
2017-11-05 06:03:17 +01:00
meta = with stdenv.lib; {
description = "The Git linkable library";
homepage = https://libgit2.github.com/;
2017-11-05 06:03:17 +01:00
license = licenses.gpl2;
platforms = with platforms; all;
2013-05-10 22:12:37 +02:00
};
} // stdenv.lib.optionalAttrs (!stdenv.isLinux) {
NIX_LDFLAGS = "-liconv";
propagatedBuildInputs = [ libiconv ];
})