tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ioc-scan: 2.0.0 -> 3.0.0
R. Ryantm
11 months ago
f4cfc79d
866edf51
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
io
ioc-scan
package.nix
+3
-3
pkgs/by-name/io/ioc-scan/package.nix
···
6
6
7
7
python3.pkgs.buildPythonApplication rec {
8
8
pname = "ioc-scan";
9
9
-
version = "2.0.0";
9
9
+
version = "3.0.0";
10
10
pyproject = true;
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "cisagov";
14
14
repo = "ioc-scanner";
15
15
tag = "v${version}";
16
16
-
hash = "sha256-SCyCANZfi7PqexM2Kc8WJwwEEiBQxPBg0ggWsK9WB4k=";
16
16
+
hash = "sha256-p1cx6MwAPmPIsOHNWSU9AyYcQaddFugBkm6a+kUjzvg=";
17
17
};
18
18
19
19
build-system = with python3.pkgs; [ setuptools ];
···
31
31
meta = with lib; {
32
32
description = "Tool to search a filesystem for indicators of compromise (IoC)";
33
33
homepage = "https://github.com/cisagov/ioc-scanner";
34
34
-
changelog = "https://github.com/cisagov/ioc-scanner/releases/tag/v${version}";
34
34
+
changelog = "https://github.com/cisagov/ioc-scanner/releases/tag/${src.tag}";
35
35
license = with licenses; [ cc0 ];
36
36
maintainers = with maintainers; [ fab ];
37
37
};