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

25 lines
692 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig, zlib, python, libssh2, openssl, http-parser }:
2013-05-11 00:12:37 +04:00
stdenv.mkDerivation rec {
2015-09-25 16:47:57 +03:00
version = "0.23.2";
2013-05-11 00:12:37 +04:00
name = "libgit2-${version}";
src = fetchurl {
name = "${name}.tar.gz";
url = "https://github.com/libgit2/libgit2/tarball/v${version}";
2015-09-25 16:47:57 +03:00
sha256 = "1d3901bmgvdnmzrx21afi1d0llsqmca3ckj942p0i2wpdpr1kbcp";
2013-05-11 00:12:37 +04:00
};
2014-01-09 17:18:58 +04:00
cmakeFlags = "-DTHREADSAFE=ON";
2015-11-17 19:52:52 +03:00
nativeBuildInputs = [ cmake python pkgconfig ];
2014-10-22 23:37:52 +04:00
buildInputs = [ zlib libssh2 openssl http-parser ];
2013-05-11 00:12:37 +04:00
meta = {
description = "the Git linkable library";
homepage = http://libgit2.github.com/;
license = stdenv.lib.licenses.gpl2;
2013-05-11 00:12:37 +04:00
platforms = with stdenv.lib.platforms; all;
};
}