summary refs log tree commit diff
path: root/pkgs/development/libraries/git2/0.21.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/git2/0.21.nix')
-rw-r--r--pkgs/development/libraries/git2/0.21.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/libraries/git2/0.21.nix b/pkgs/development/libraries/git2/0.21.nix
deleted file mode 100644
index 4ea43086548..00000000000
--- a/pkgs/development/libraries/git2/0.21.nix
+++ /dev/null
@@ -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;
-  };
-}