summary refs log tree commit diff
path: root/pkgs/development/libraries/git2
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-07-27 13:35:24 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-07-27 13:35:24 +0100
commitf026e85080bae5993fc2c2fd433b3b5e1d1ec9ab (patch)
tree9a430526ade2b2c3455b338b3ea2c8fbaed8dbc9 /pkgs/development/libraries/git2
parent84c75d5a504fb74014794945980982c19f3df203 (diff)
downloadnixpkgs-f026e85080bae5993fc2c2fd433b3b5e1d1ec9ab.tar
nixpkgs-f026e85080bae5993fc2c2fd433b3b5e1d1ec9ab.tar.gz
nixpkgs-f026e85080bae5993fc2c2fd433b3b5e1d1ec9ab.tar.bz2
nixpkgs-f026e85080bae5993fc2c2fd433b3b5e1d1ec9ab.tar.lz
nixpkgs-f026e85080bae5993fc2c2fd433b3b5e1d1ec9ab.tar.xz
nixpkgs-f026e85080bae5993fc2c2fd433b3b5e1d1ec9ab.tar.zst
nixpkgs-f026e85080bae5993fc2c2fd433b3b5e1d1ec9ab.zip
libgit2_0_25: remove
Diffstat (limited to 'pkgs/development/libraries/git2')
-rw-r--r--pkgs/development/libraries/git2/0.25.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/libraries/git2/0.25.nix b/pkgs/development/libraries/git2/0.25.nix
deleted file mode 100644
index 6bb1de2cf34..00000000000
--- a/pkgs/development/libraries/git2/0.25.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, fetchFromGitHub, cmake, pkgconfig, python
-, zlib, libssh2, openssl, http-parser, curl
-, libiconv, Security
-}:
-
-stdenv.mkDerivation rec {
-  version = "0.25.1";
-  name = "libgit2-${version}";
-
-  src = fetchFromGitHub {
-    owner = "libgit2";
-    repo = "libgit2";
-    rev = "v${version}";
-    sha256 = "1jhikg0gqpdzfzhgv44ybdpm24lvgkc7ki4306lc5lvmj1s2nylj";
-  };
-
-  cmakeFlags = [ "-DTHREADSAFE=ON" ];
-
-  nativeBuildInputs = [ cmake python pkgconfig ];
-
-  buildInputs = [ zlib libssh2 openssl http-parser curl ]
-    ++ stdenv.lib.optional stdenv.isDarwin Security;
-
-  propagatedBuildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
-
-  enableParallelBuilding = true;
-
-  doCheck = false; # hangs. or very expensive?
-
-  meta = {
-    description = "The Git linkable library";
-    homepage = https://libgit2.github.com/;
-    license = stdenv.lib.licenses.gpl2;
-    platforms = with stdenv.lib.platforms; all;
-  };
-}