about summary refs log tree commit diff
path: root/pkgs/development/guile-modules/guile-git/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/guile-modules/guile-git/default.nix')
-rw-r--r--pkgs/development/guile-modules/guile-git/default.nix51
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/development/guile-modules/guile-git/default.nix b/pkgs/development/guile-modules/guile-git/default.nix
deleted file mode 100644
index ef5213b26cbeb..0000000000000
--- a/pkgs/development/guile-modules/guile-git/default.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitLab
-, guile
-, libgit2
-, scheme-bytestructures
-, autoreconfHook
-, pkg-config
-, texinfo
-}:
-
-stdenv.mkDerivation rec {
-  pname = "guile-git";
-  version = "0.7.0";
-
-  src = fetchFromGitLab {
-    owner = "guile-git";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-7xKs5Biq9HHOJbNILLU1oX8oPuEbti0uLMiobKz//bU=";
-  };
-
-  strictDeps = true;
-  nativeBuildInputs = [
-    autoreconfHook guile pkg-config texinfo
-  ];
-  buildInputs = [
-    guile
-  ];
-  propagatedBuildInputs = [
-    libgit2 scheme-bytestructures
-  ];
-  doCheck = !stdenv.isDarwin;
-  makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
-
-  enableParallelBuilding = true;
-
-  # Skipping proxy tests since it requires network access.
-  postConfigure = ''
-    sed -i -e '94i (test-skip 1)' ./tests/proxy.scm
-  '';
-
-  meta = with lib; {
-    description = "Bindings to Libgit2 for GNU Guile";
-    homepage = "https://gitlab.com/guile-git/guile-git";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ ethancedwards8 ];
-    platforms = guile.meta.platforms;
-  };
-}
-