tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
jsluice: init at unstable-2023-06-23
Fabian Affolter
2 years ago
12b68dfd
8b2049f9
+32
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
jsluice
default.nix
top-level
all-packages.nix
+30
pkgs/tools/security/jsluice/default.nix
···
1
1
+
{ lib
2
2
+
, buildGoModule
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
buildGoModule rec {
7
7
+
pname = "jsluice";
8
8
+
version = "unstable-2023-06-23";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "BishopFox";
12
12
+
repo = "jsluice";
13
13
+
rev = "f10429e1016a9573da0157eacde8f7feb9deb8c7";
14
14
+
hash = "sha256-l9rwC1ljtt7Q+FYKdQFhtnLJDS8OwMJXIIpZgya0zwU=";
15
15
+
};
16
16
+
17
17
+
vendorHash = "sha256-u4E+b/vChXArovtaZ4LODaINWit86i5K4GyHLR0JSyU=";
18
18
+
19
19
+
ldflags = [
20
20
+
"-s"
21
21
+
"-w"
22
22
+
];
23
23
+
24
24
+
meta = with lib; {
25
25
+
description = "Tool for extracting URLs, paths, secrets, and other data from JavaScript source code";
26
26
+
homepage = "https://github.com/BishopFox/jsluice";
27
27
+
license = licenses.mit;
28
28
+
maintainers = with maintainers; [ fab ];
29
29
+
};
30
30
+
}
+2
pkgs/top-level/all-packages.nix
···
9149
9149
9150
9150
jsduck = callPackage ../development/tools/jsduck { };
9151
9151
9152
9152
+
jsluice = callPackage ../tools/security/jsluice { };
9153
9153
+
9152
9154
json-schema-for-humans = with python3Packages; toPythonApplication json-schema-for-humans;
9153
9155
9154
9156
jsonfmt = callPackage ../development/tools/misc/jsonfmt { };