stax: init at v0.25.1 (#496630)

This commit is contained in:
Yohann Boniface
2026-03-18 23:48:44 +00:00
committed by GitHub
2 changed files with 43 additions and 0 deletions
+5
View File
@@ -10579,6 +10579,11 @@
githubId = 982322;
name = "Henrik Olsson";
};
henrikvtcodes = {
github = "henrikvtcodes";
githubId = 22358337;
name = "Henrik VT";
};
henrirosten = {
email = "henri.rosten@unikie.com";
github = "henrirosten";
+38
View File
@@ -0,0 +1,38 @@
{
lib,
rustPlatform,
fetchFromGitHub,
versionCheckHook,
perl,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "stax";
version = "0.25.1";
src = fetchFromGitHub {
owner = "cesarferreira";
repo = "stax";
tag = "v${finalAttrs.version}";
hash = "sha256-HHunRVDoijBOcIzj0xknj2O+m+A1nmkkxu97XZcvmJw=";
};
nativeBuildInputs = [ perl ];
cargoHash = "sha256-cJmK5uX3HCz4own2UtXFkHdGFETjina2/UW18f/g/bA=";
doInstallCheck = true;
doCheck = false;
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
meta = {
description = "Stacked-branch workflow for Git with an interactive TUI, smart PRs, and safe undo";
homepage = "https://github.com/cesarferreira/stax";
license = lib.licenses.mit;
mainProgram = "stax";
maintainers = with lib.maintainers; [
henrikvtcodes
];
};
})