26 lines
651 B
Nix
26 lines
651 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "k6";
|
|
version = "0.29.0";
|
|
|
|
goPackagePath = "github.com/loadimpact/k6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "loadimpact";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1zkw7jga8nsqycvrwnqxifbb5la2z4bmxg3l5638i4xlpn58g711";
|
|
};
|
|
|
|
subPackages = [ "./" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A modern load testing tool, using Go and JavaScript";
|
|
homepage = "https://k6.io/";
|
|
changelog = "https://github.com/loadimpact/k6/releases/tag/v${version}";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ offline ];
|
|
};
|
|
}
|