k6: 0.38.3 -> 0.39.0
- drop explict docheck - add shell completion for bash,fish and zsh - preserve cross compilation for shell files
This commit is contained in:
parent
6a9ace7c99
commit
94f3b464ee
@ -1,26 +1,34 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "k6";
|
||||
version = "0.38.3";
|
||||
version = "0.39.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "grafana";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-MV5GbsXVvq99tI5LCK6VgcXRtNUfffoz3FopwPljhdA=";
|
||||
sha256 = "sha256-fphhXbaK5wNhBaP8+d4Ktqf4G8OyX/1SLiHVF+jlUF0=";
|
||||
};
|
||||
|
||||
subPackages = [ "./" ];
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
doCheck = true;
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
$out/bin/k6 version | grep ${version} > /dev/null
|
||||
'';
|
||||
|
||||
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
||||
installShellCompletion --cmd k6 \
|
||||
--bash <($out/bin/k6 completion bash) \
|
||||
--fish <($out/bin/k6 completion fish) \
|
||||
--zsh <($out/bin/k6 completion zsh)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A modern load testing tool, using Go and JavaScript";
|
||||
homepage = "https://k6.io/";
|
||||
|
Loading…
Reference in New Issue
Block a user