Commit 2761bf7e authored by Fabian Affolter's avatar Fabian Affolter
Browse files

enumerepo: init at 1.0.0

parent 710635f6
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };