lol
at 24.05-pre 26 lines 607 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "ssb"; 8 version = "0.1.1"; 9 10 src = fetchFromGitHub { 11 owner = "kitabisa"; 12 repo = pname; 13 rev = "v${version}"; 14 sha256 = "0dkd02l30461cwn5hsssnjyb9s8ww179wll3l7z5hy1hv3x6h9g1"; 15 }; 16 17 vendorHash = null; 18 19 meta = with lib; { 20 description = "Tool to bruteforce SSH server"; 21 homepage = "https://github.com/kitabisa/ssb"; 22 license = with licenses; [ asl20 ]; 23 maintainers = with maintainers; [ fab ]; 24 broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check 25 }; 26}