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>
wip/yesman
Jaka Hudoklin 5 years ago committed by GitHub
parent fa6e25da50
commit ca472cdff5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      pkgs/development/tools/k6/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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…
Cancel
Save