1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/git2/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, curl, http-parser, libiconv }:
2013-05-10 21:12:37 +01:00
stdenv.mkDerivation (rec {
2016-05-15 12:19:17 +01:00
version = "0.24.1";
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}";
2016-05-15 12:19:17 +01:00
sha256 = "0rw80480dx2f6a2wbb1bwixygg1iwq3r7vwhxdmkkf4lpxd35jhd";
2013-05-10 21:12:37 +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 ];
buildInputs = [ zlib libssh2 openssl http-parser curl ];
2013-05-10 21:12:37 +01:00
meta = {
description = "The Git linkable library";
2013-05-10 21:12:37 +01:00
homepage = http://libgit2.github.com/;
license = stdenv.lib.licenses.gpl2;
2013-05-10 21:12:37 +01:00
platforms = with stdenv.lib.platforms; all;
};
} // stdenv.lib.optionalAttrs (!stdenv.isLinux) {
NIX_LDFLAGS = "-liconv";
propagatedBuildInputs = [ libiconv ];
})