libgit2: update from 0.18.0 to 0.20.0

This commit is contained in:
Nixpkgs Monitor 2013-12-20 17:37:37 +02:00 committed by Evgeny Egorochkin
parent 0ee8be3a19
commit d9885f2887

View File

@ -1,13 +1,13 @@
{stdenv, fetchurl, cmake, zlib, python}:
stdenv.mkDerivation rec {
version = "0.18.0";
version = "0.20.0";
name = "libgit2-${version}";
src = fetchurl {
name = "${name}.tar.gz";
url = "https://github.com/libgit2/libgit2/tarball/v${version}";
md5 = "50409ddb0c34713677b33ef617e92c94";
sha256 = "1iyncz8fqazw683dxjls3lf5pw3f5ma8kachkvjz7dsq57wxllbj";
};
nativeBuildInputs = [ cmake python ];