Merge pull request #57956 from dywedir/k6

k6: 0.23.1 -> 0.24.0
This commit is contained in:
Vladyslav M 2019-03-25 10:27:20 +02:00 committed by GitHub
commit 0574de1fd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,16 @@
{ stdenv, buildGoPackage, fetchFromGitHub }: { stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
name = "k6-${version}"; pname = "k6";
version = "0.23.1"; version = "0.24.0";
goPackagePath = "github.com/loadimpact/k6"; goPackagePath = "github.com/loadimpact/k6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "loadimpact"; owner = "loadimpact";
repo = "k6"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "03krrpbb67h9hmrg5m94936kha667yh2lqzp9s7fv0b6khskr9r7"; sha256 = "1riyyi4lxdaqilzzkxzzw3hzcrjjcylq2jh3p3656f99wiisvj28";
}; };
subPackages = [ "./" ]; subPackages = [ "./" ];