tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
enumerepo: init at 1.0.0
Fabian Affolter
2 years ago
2761bf7e
710635f6
+33
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
enumerepo
default.nix
top-level
all-packages.nix
+31
pkgs/tools/security/enumerepo/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
0
0
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 { };