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

28 lines
821 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser, libiconv }:
2013-05-10 20:12:37 +00:00
stdenv.mkDerivation (rec {
2016-05-15 11:19:17 +00:00
version = "0.24.1";
2013-05-10 20:12:37 +00:00
name = "libgit2-${version}";
src = fetchurl {
name = "${name}.tar.gz";
url = "https://github.com/libgit2/libgit2/tarball/v${version}";
2016-05-15 11:19:17 +00:00
sha256 = "0rw80480dx2f6a2wbb1bwixygg1iwq3r7vwhxdmkkf4lpxd35jhd";
2013-05-10 20:12:37 +00:00
};
2014-01-09 13:18:58 +00:00
cmakeFlags = "-DTHREADSAFE=ON";
2015-11-17 16:52:52 +00:00
nativeBuildInputs = [ cmake python pkgconfig ];
2014-10-22 19:37:52 +00:00
buildInputs = [ zlib libssh2 openssl http-parser ];
2013-05-10 20:12:37 +00:00
meta = {
description = "The Git linkable library";
2013-05-10 20:12:37 +00:00
homepage = http://libgit2.github.com/;
license = stdenv.lib.licenses.gpl2;
2013-05-10 20:12:37 +00:00
platforms = with stdenv.lib.platforms; all;
};
} // stdenv.lib.optionalAttrs (!stdenv.isLinux) {
NIX_LDFLAGS = "-liconv";
propagatedBuildInputs = [ libiconv ];
})