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

23 lines
581 B
Nix
Raw Normal View History

2013-05-10 20:12:37 +00:00
{stdenv, fetchurl, cmake, zlib, python}:
stdenv.mkDerivation rec {
2013-12-20 15:37:37 +00:00
version = "0.20.0";
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}";
2013-12-20 15:37:37 +00:00
sha256 = "1iyncz8fqazw683dxjls3lf5pw3f5ma8kachkvjz7dsq57wxllbj";
2013-05-10 20:12:37 +00:00
};
nativeBuildInputs = [ cmake python ];
buildInputs = [ zlib ];
meta = {
description = "the Git linkable library";
homepage = http://libgit2.github.com/;
license = with stdenv.lib.licenses; gpl2;
platforms = with stdenv.lib.platforms; all;
};
}