about summary refs log tree commit diff
path: root/pkgs/tools/security/gitjacker/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/gitjacker/default.nix')
-rw-r--r--pkgs/tools/security/gitjacker/default.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/tools/security/gitjacker/default.nix b/pkgs/tools/security/gitjacker/default.nix
deleted file mode 100644
index 5303e169e8dd..000000000000
--- a/pkgs/tools/security/gitjacker/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ lib
-, buildGoModule
-, fetchFromGitHub
-, git
-, stdenv
-}:
-
-buildGoModule rec {
-  pname = "gitjacker";
-  version = "0.1.0";
-
-  src = fetchFromGitHub {
-    owner = "liamg";
-    repo = "gitjacker";
-    rev = "v${version}";
-    sha256 = "sha256-rEn9FpcRfEt2yGepIPEAO9m8JeVb+nMhYMBWhC/barc=";
-  };
-
-  vendorHash = null;
-
-  propagatedBuildInputs = [ git ];
-
-  nativeCheckInputs = [ git ];
-
-  doCheck = !stdenv.isDarwin;
-
-  preCheck = ''
-    export PATH=$TMPDIR/usr/bin:$PATH
-  '';
-
-  meta = with lib; {
-    description = "Leak git repositories from misconfigured websites";
-    mainProgram = "gitjacker";
-    longDescription = ''
-      Gitjacker downloads git repositories and extracts their contents
-      from sites where the .git directory has been mistakenly uploaded.
-      It will still manage to recover a significant portion of a repository
-      even where directory listings are disabled.
-    '';
-    homepage = "https://github.com/liamg/gitjacker";
-    license = with licenses; [ unlicense ];
-    maintainers = with maintainers; [ fab ];
-  };
-}