livekit-cli: 1.5.1 -> 2.16.0; modernize (#506053)

This commit is contained in:
Maximilian Bosch
2026-04-07 15:34:18 +00:00
committed by GitHub
2 changed files with 21 additions and 7 deletions
+5
View File
@@ -4443,6 +4443,11 @@
github = "carlthome";
githubId = 1595907;
};
carschandler = {
name = "Cars Chandler";
github = "carschandler";
githubId = 92899389;
};
casaca = {
name = "J McNutt";
email = "jmacasac@hotmail.com";
+16 -7
View File
@@ -2,28 +2,37 @@
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
testers,
}:
buildGoModule (finalAttrs: {
pname = "livekit-cli";
version = "1.5.1";
version = "2.16.0";
src = fetchFromGitHub {
owner = "livekit";
repo = "livekit-cli";
rev = "v${finalAttrs.version}";
hash = "sha256-J5tg3nm2pEemEZcIpObcxH+G4ByzvUtoSyy92CcWr6M=";
tag = "v${finalAttrs.version}";
hash = "sha256-qGxRNsVnrDl8N0hAh8WjumDvaL7Zs90HaRmXORvUWZs=";
};
vendorHash = "sha256-ywHTIuiZaoY3p7hTsnImcCpuwMXHQZcnRsWerIlOU4o=";
vendorHash = "sha256-6posDd3z2seRvGuWLsmPD5wOz4RVF4ulvmfTqWN29hE=";
subPackages = [ "cmd/livekit-cli" ];
subPackages = [ "cmd/lk" ];
passthru.updateScript = nix-update-script { };
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
meta = {
description = "Command line interface to LiveKit";
homepage = "https://livekit.io/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ mgdelacroix ];
mainProgram = "livekit-cli";
maintainers = with lib.maintainers; [
mgdelacroix
faukah
carschandler
];
mainProgram = "lk";
};
})