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

25 lines
675 B
Nix
Raw Normal View History

2014-10-22 12:37:52 -07:00
{stdenv, fetchurl, cmake, zlib, python, libssh2, openssl, http-parser}:
2013-05-10 13:12:37 -07:00
stdenv.mkDerivation rec {
2014-08-27 10:21:50 -07:00
version = "0.21.1";
2013-05-10 13:12:37 -07:00
name = "libgit2-${version}";
src = fetchurl {
name = "${name}.tar.gz";
url = "https://github.com/libgit2/libgit2/tarball/v${version}";
2014-08-27 10:21:50 -07:00
sha256 = "0afbvcsryg7bsmbfj23l09b1xngkmqhf043njl8wm44qslrxibkz";
2013-05-10 13:12:37 -07:00
};
2014-01-09 05:18:58 -08:00
cmakeFlags = "-DTHREADSAFE=ON";
2013-05-10 13:12:37 -07:00
nativeBuildInputs = [ cmake python ];
2014-10-22 12:37:52 -07:00
buildInputs = [ zlib libssh2 openssl http-parser ];
2013-05-10 13:12:37 -07:00
meta = {
description = "the Git linkable library";
homepage = http://libgit2.github.com/;
license = with stdenv.lib.licenses; gpl2;
platforms = with stdenv.lib.platforms; all;
};
}