2016-08-08 14:55:05 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, curl, http-parser, libiconv }:
|
2013-05-10 21:12:37 +01:00
|
|
|
|
2016-03-13 08:18:16 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2017-01-11 05:50:54 +00:00
|
|
|
version = "0.24.6";
|
2013-05-10 21:12:37 +01:00
|
|
|
name = "libgit2-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
name = "${name}.tar.gz";
|
|
|
|
url = "https://github.com/libgit2/libgit2/tarball/v${version}";
|
2017-01-11 05:50:54 +00:00
|
|
|
sha256 = "070jrv690bd5dq991lc32qfnai9ywvrjzsfgi3rcw6kw4l2ynxjr";
|
2013-05-10 21:12:37 +01:00
|
|
|
};
|
|
|
|
|
2016-08-08 14:55:05 +01:00
|
|
|
# TODO: `cargo` (rust's package manager) surfaced a serious bug in
|
|
|
|
# libgit2 when the `Security.framework` transport is used on Darwin.
|
|
|
|
# The upstream issue is tracked at
|
|
|
|
# https://github.com/libgit2/libgit2/issues/3885 - feel free to
|
|
|
|
# remove this patch as soon as it's resolved (i.E. when cargo is
|
|
|
|
# working fine without this patch)
|
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
./disable-security.framework.patch
|
|
|
|
];
|
|
|
|
|
2014-01-09 13:18:58 +00:00
|
|
|
cmakeFlags = "-DTHREADSAFE=ON";
|
|
|
|
|
2015-11-17 16:52:52 +00:00
|
|
|
nativeBuildInputs = [ cmake python pkgconfig ];
|
2016-08-08 14:55:05 +01:00
|
|
|
buildInputs = [ zlib libssh2 openssl http-parser curl ];
|
2013-05-10 21:12:37 +01:00
|
|
|
|
|
|
|
meta = {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "The Git linkable library";
|
2013-05-10 21:12:37 +01:00
|
|
|
homepage = http://libgit2.github.com/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-05-10 21:12:37 +01:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
|
|
|
};
|
2016-03-13 08:18:16 +00:00
|
|
|
} // stdenv.lib.optionalAttrs (!stdenv.isLinux) {
|
|
|
|
NIX_LDFLAGS = "-liconv";
|
|
|
|
propagatedBuildInputs = [ libiconv ];
|
|
|
|
})
|