about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-12-28 10:04:18 +0100
committerGitHub <noreply@github.com>2023-12-28 10:04:18 +0100
commit77f3d8f33b7d91fb9ce74e94aae181c7e404e817 (patch)
treeef6a0b56e9b007ee95942792a0e3ec60fb62499e /pkgs/tools/security
parent62db783cc43acd4e1848933256d017b5fc538e55 (diff)
parent1e211406222fb92f1c7ffeee5cd98b03bf8fd660 (diff)
Merge pull request #275843 from aaronjheng/ssb
ssb: remove
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/ssb/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/tools/security/ssb/default.nix b/pkgs/tools/security/ssb/default.nix
deleted file mode 100644
index 725f72e6c7cf8..0000000000000
--- a/pkgs/tools/security/ssb/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib
-, buildGoModule
-, fetchFromGitHub
-}:
-
-buildGoModule rec {
-  pname = "ssb";
-  version = "0.1.1";
-
-  src = fetchFromGitHub {
-    owner = "kitabisa";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "0dkd02l30461cwn5hsssnjyb9s8ww179wll3l7z5hy1hv3x6h9g1";
-  };
-
-  vendorHash = null;
-
-  meta = with lib; {
-    description = "Tool to bruteforce SSH server";
-    homepage = "https://github.com/kitabisa/ssb";
-    license = with licenses; [ asl20 ];
-    maintainers = with maintainers; [ fab ];
-    broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check
-  };
-}