biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / enumerepo / default.nix
blob3c6849af44ff0c5a1ce7faed6e9c976282b6341e
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "enumerepo";
8   version = "1.0.0";
10   src = fetchFromGitHub {
11     owner = "trickest";
12     repo = pname;
13     rev = "refs/tags/v${version}";
14     hash = "sha256-PWWx6b+fttxKxMtuHAYPTeEsta0E6+IQ1DSKO6c7Jdc=";
15   };
17   vendorHash = "sha256-Dt3QS1Rm/20Yitgg4zbBcWQXV8mTlpNbzc/k4DaTuQc=";
19   ldflags = [
20     "-s"
21     "-w"
22   ];
24   meta = with lib; {
25     description = "Tool to list all public repositories for (valid) GitHub usernames";
26     mainProgram = "enumerepo";
27     homepage = "https://github.com/trickest/enumerepo";
28     changelog = "https://github.com/trickest/enumerepo/releases/tag/v${version}";
29     license = licenses.mit;
30     maintainers = with maintainers; [ fab ];
31   };