stakk: init at 1.17.1 (#520225)

This commit is contained in:
Oleksii Filonenko 2026-06-30 11:51:01 +00:00 committed by GitHub
commit 16c55500e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 50 additions and 0 deletions

View file

@ -29459,6 +29459,12 @@
githubId = 45292658;
name = "Julius Schmitt";
};
voidlily = {
github = "voidlily";
githubId = 221749;
name = "voidlily";
keys = [ { fingerprint = "E735 CD3F A78C 0919 4012 ADF3 3FBF B3CC E12E 7D19"; } ];
};
voidnoi = {
email = "voidnoi@proton.me";
github = "VoidNoi";

View file

@ -0,0 +1,44 @@
{
lib,
rustPlatform,
fetchFromGitHub,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "stakk";
version = "1.17.1";
src = fetchFromGitHub {
owner = "glennib";
repo = "stakk";
tag = "v${finalAttrs.version}";
hash = "sha256-5wEZOxXg30F0MqeszDRYrOBnsOzfXxld8iQkZSPqUIY=";
};
cargoHash = "sha256-iEGrGSia/Da1bpXVAOI9M7QNNVHUAB/RFRgzl+IrFlU=";
useNextest = true;
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
passthru.updateScript = nix-update-script { };
__structuredAttrs = true;
meta = {
description = "Bridge Jujutsu (jj) bookmarks to GitHub stacked pull requests";
homepage = "https://github.com/glennib/stakk";
changelog = "https://github.com/glennib/stakk/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = with lib.licenses; [
asl20
mit
];
maintainers = with lib.maintainers; [
voidlily
Br1ght0ne
];
mainProgram = "stakk";
};
})