xk6: init at 0.14.3 (#383434)

This commit is contained in:
Arne Keller
2025-03-12 16:41:29 +01:00
committed by GitHub
2 changed files with 41 additions and 0 deletions
+6
View File
@@ -22976,6 +22976,12 @@
githubId = 203195;
name = "Szczyp";
};
szkiba = {
email = "iszkiba@gmail.com";
github = "szkiba";
githubId = 16244553;
name = "Iván Szkiba";
};
szlend = {
email = "pub.nix@zlender.si";
github = "szlend";
+35
View File
@@ -0,0 +1,35 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
nix-update-script,
installShellFiles,
}:
buildGoModule rec {
pname = "xk6";
version = "0.14.3";
src = fetchFromGitHub {
owner = "grafana";
repo = "xk6";
tag = "v${version}";
hash = "sha256-pxiZelbAEEtibNdpEuRplPFtJ61YicoiAnAs8oaX6IA=";
};
vendorHash = null;
subPackages = [ "cmd/xk6" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Build k6 with extensions";
mainProgram = "xk6";
homepage = "https://k6.io/";
changelog = "https://github.com/grafana/xk6/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ szkiba ];
};
}