k6: init at 0.23.1 (#55824)
* k6: init at 0.23.1 * k6: fix license Co-Authored-By: offlinehacker <offlinehacker@users.noreply.github.com>
This commit is contained in:
parent
fa6e25da50
commit
ca472cdff5
24
pkgs/development/tools/k6/default.nix
Normal file
24
pkgs/development/tools/k6/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "k6-${version}";
|
||||
version = "0.23.1";
|
||||
|
||||
goPackagePath = "github.com/loadimpact/k6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "loadimpact";
|
||||
repo = "k6";
|
||||
rev = "v${version}";
|
||||
sha256 = "03krrpbb67h9hmrg5m94936kha667yh2lqzp9s7fv0b6khskr9r7";
|
||||
};
|
||||
|
||||
subPackages = [ "./" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://k6.io/;
|
||||
description = "A modern load testing tool, using Go and JavaScript";
|
||||
license = licenses.agpl3Plus;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
};
|
||||
}
|
@ -3658,6 +3658,8 @@ in
|
||||
|
||||
kytea = callPackage ../tools/text/kytea { };
|
||||
|
||||
k6 = callPackage ../development/tools/k6 { };
|
||||
|
||||
ldc = callPackage ../development/compilers/ldc { };
|
||||
|
||||
lbreakout2 = callPackage ../games/lbreakout2 { };
|
||||
|
Loading…
Reference in New Issue
Block a user