1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libgit2_0_21: remove, unused and probably vulnerable

This commit is contained in:
Franz Pletz 2017-01-11 06:50:37 +01:00
parent f159279da5
commit 3ecfab8819
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 0 additions and 26 deletions

View file

@ -1,24 +0,0 @@
{stdenv, fetchurl, cmake, zlib, python, libssh2, openssl, http-parser}:
stdenv.mkDerivation rec {
version = "0.21.2";
name = "libgit2-${version}";
src = fetchurl {
name = "${name}.tar.gz";
url = "https://github.com/libgit2/libgit2/tarball/v${version}";
sha256 = "0icf119lhha96rk8m6s38sczjr0idr7yczw6knby61m81a25a96y";
};
cmakeFlags = "-DTHREADSAFE=ON";
nativeBuildInputs = [ cmake python ];
buildInputs = [ zlib libssh2 openssl http-parser ];
meta = {
description = "The Git linkable library";
homepage = http://libgit2.github.com/;
license = stdenv.lib.licenses.gpl2;
platforms = with stdenv.lib.platforms; all;
};
}

View file

@ -7269,8 +7269,6 @@ in
}
);
libgit2_0_21 = callPackage ../development/libraries/git2/0.21.nix { };
gle = callPackage ../development/libraries/gle { };
glew = callPackage ../development/libraries/glew { };