about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-01-07 10:31:29 -0800
committerJonathan Ringer <jonringer117@gmail.com>2022-01-07 10:31:29 -0800
commit86f9a32c4c542295a9a0298db6fe998b1a14730d (patch)
treee76d24a32d8a8713c131de5cda1dc4ec514dbced /pkgs/tools/security
parentbd8af84d7d6b545b4269c188fa5f1ece1df38e36 (diff)
parent568e0bc498ee51fdd88e1e94089de05f2fdbd18b (diff)
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/python-modules/hydra/default.nix
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/bypass403/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/tools/security/bypass403/default.nix b/pkgs/tools/security/bypass403/default.nix
deleted file mode 100644
index 3d1569cf55774..0000000000000
--- a/pkgs/tools/security/bypass403/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ buildGoModule
-, fetchFromGitHub
-, lib
-}:
-
-buildGoModule rec {
-  pname = "bypass403";
-  version = "1.4.0";
-
-  src = fetchFromGitHub {
-    owner = "drsigned";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "1x3a4lnxjxbv80kaydy57809n9r7vzci9ki4f98smf3w04s86rcl";
-  };
-
-  vendorSha256 = "1bp6bf99rxlyg91pn1y228q18lawpykmvkl22cydmclms0q0n238";
-
-  meta = with lib; {
-    description = "Tool to bypass 403 Forbidden responses";
-    homepage = "https://github.com/drsigned/bypass403";
-    license = with licenses; [ mit ];
-    maintainers = with maintainers; [ fab ];
-
-    # https://github.com/drsigned/bypass403 no longer exists
-    broken = true;
-  };
-}