enumerepo: init at 1.0.0

+33
+31
pkgs/tools/security/enumerepo/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "enumerepo"; 8 + version = "1.0.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "trickest"; 12 + repo = pname; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-PWWx6b+fttxKxMtuHAYPTeEsta0E6+IQ1DSKO6c7Jdc="; 15 + }; 16 + 17 + vendorHash = "sha256-Dt3QS1Rm/20Yitgg4zbBcWQXV8mTlpNbzc/k4DaTuQc="; 18 + 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "Tool to list all public repositories for (valid) GitHub usernames"; 26 + homepage = "https://github.com/trickest/enumerepo"; 27 + changelog = "https://github.com/trickest/enumerepo/releases/tag/v${version}"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ fab ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 622 623 enum4linux-ng = python3Packages.callPackage ../tools/security/enum4linux-ng { }; 624 625 erosmb = callPackage ../tools/security/erosmb { }; 626 627 octosuite = callPackage ../tools/security/octosuite { };
··· 622 623 enum4linux-ng = python3Packages.callPackage ../tools/security/enum4linux-ng { }; 624 625 + enumerepo = callPackage ../tools/security/enumerepo {}; 626 + 627 erosmb = callPackage ../tools/security/erosmb { }; 628 629 octosuite = callPackage ../tools/security/octosuite { };