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