lstk: init at 0.5.7 (#499495)

This commit is contained in:
Sandro
2026-04-19 17:29:04 +00:00
committed by GitHub
+42
View File
@@ -0,0 +1,42 @@
{
fetchFromGitHub,
buildGoModule,
lib,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "lstk";
version = "0.5.7";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "localstack";
repo = "lstk";
tag = "v${finalAttrs.version}";
sha256 = "sha256-HWkCDnbg/D2zX3rdvmFTdKrx03SO6FaiA/Pzj0f4hlA=";
};
vendorHash = "sha256-rEcVtSFnBQ+3bbU5pjbCXEJZo89+lL/1HJG9bCn8OSE=";
excludedPackages = "test/integration";
__darwinAllowLocalNetworking = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Command line interface for LocalStack";
mainProgram = "lstk";
homepage = "https://github.com/localstack/lstk";
changelog = "https://github.com/localstack/lstk/releases/tag/v${finalAttrs.version}";
longDescription = ''
lstk is a command-line interface for LocalStack built in Go with a modern
terminal Ul, and native CLI experience for managing and interacting with
LocalStack deployments.
'';
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ purcell ];
platforms = lib.platforms.unix;
};
})