tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
vt-cli: add changelog to meta
Fabian Affolter
3 years ago
0536b97f
736c2dfa
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
vt-cli
default.nix
+4
-3
pkgs/tools/security/vt-cli/default.nix
···
10
10
src = fetchFromGitHub {
11
11
owner = "VirusTotal";
12
12
repo = pname;
13
13
-
rev = version;
14
14
-
sha256 = "0jqr2xf6f9ywavkx5hzcfnky8ax23ahdj24hjsnq6zlpdqvfn1xb";
13
13
+
rev = "refs/tags/${version}";
14
14
+
hash = "sha256-qwfrNm6XfoOtlpAI2aAaoivkp3Xsw9LnVtwnZ1wXGUs=";
15
15
};
16
16
17
17
-
vendorSha256 = "sha256-XN6dJpoJe9nJn+Tr9SYD64LE0XFiO2vlpdyI9SrZZjQ=";
17
17
+
vendorHash = "sha256-XN6dJpoJe9nJn+Tr9SYD64LE0XFiO2vlpdyI9SrZZjQ=";
18
18
19
19
ldflags = [
20
20
"-X github.com/VirusTotal/vt-cli/cmd.Version=${version}"
···
25
25
meta = with lib; {
26
26
description = "VirusTotal Command Line Interface";
27
27
homepage = "https://github.com/VirusTotal/vt-cli";
28
28
+
changelog = "https://github.com/VirusTotal/vt-cli/releases/tag/${version}";
28
29
license = licenses.asl20;
29
30
maintainers = with maintainers; [ dit7ya ];
30
31
};