enumerepo: init at 1.0.0

This commit is contained in:
Fabian Affolter 2023-03-14 00:34:09 +01:00
parent 710635f625
commit 2761bf7ec0
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "enumerepo";
version = "1.0.0";
src = fetchFromGitHub {
owner = "trickest";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-PWWx6b+fttxKxMtuHAYPTeEsta0E6+IQ1DSKO6c7Jdc=";
};
vendorHash = "sha256-Dt3QS1Rm/20Yitgg4zbBcWQXV8mTlpNbzc/k4DaTuQc=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Tool to list all public repositories for (valid) GitHub usernames";
homepage = "https://github.com/trickest/enumerepo";
changelog = "https://github.com/trickest/enumerepo/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -622,6 +622,8 @@ with pkgs;
enum4linux-ng = python3Packages.callPackage ../tools/security/enum4linux-ng { };
enumerepo = callPackage ../tools/security/enumerepo {};
erosmb = callPackage ../tools/security/erosmb { };
octosuite = callPackage ../tools/security/octosuite { };