tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
k6: 0.45.1 -> 0.46.0
k6: added kashw2 maintainer
kashw2
2 years ago
91bc672c
45e71bfb
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
k6
default.nix
+3
-3
pkgs/development/tools/k6/default.nix
reviewed
···
2
2
3
3
buildGoModule rec {
4
4
pname = "k6";
5
5
-
version = "0.45.1";
5
5
+
version = "0.46.0";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "grafana";
9
9
repo = pname;
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-TeZ4nAU5SorIrGeQ1zM8YWcDWPt3F2rhPLoKx2Vvl+Q=";
11
11
+
sha256 = "sha256-4ucnq/FTvdDpzf1RWRY+U5A+BCaaQWMTEaZtmU0JD90=";
12
12
};
13
13
14
14
subPackages = [ "./" ];
···
34
34
homepage = "https://k6.io/";
35
35
changelog = "https://github.com/grafana/k6/releases/tag/v${version}";
36
36
license = licenses.agpl3Plus;
37
37
-
maintainers = with maintainers; [ offline bryanasdev000 ];
37
37
+
maintainers = with maintainers; [ offline bryanasdev000 kashw2 ];
38
38
};
39
39
}