rusty-bash: 0.8.5 -> 1.2.2

This commit is contained in:
RAVENz46
2025-10-07 15:41:34 +09:00
parent a76536702c
commit 552bc0da34
2 changed files with 926 additions and 45 deletions
+921 -40
View File
File diff suppressed because it is too large Load Diff
+5 -5
View File
@@ -4,15 +4,15 @@
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rusty-bash";
version = "0.8.5";
version = "1.2.2";
src = fetchFromGitHub {
owner = "shellgei";
repo = "rusty_bash";
tag = "v${version}";
hash = "sha256-hUMkgsWlGSqOnYdFhDGBWbc13oAssklbuJAg8NkY398=";
tag = "v${finalAttrs.version}";
hash = "sha256-WBV0wF7SKhOKAo+F1IImpPIgLvo9GYkqWrb2GluUtdA=";
};
postPatch = ''
@@ -30,4 +30,4 @@ rustPlatform.buildRustPackage rec {
mainProgram = "sush";
maintainers = with lib.maintainers; [ aleksana ];
};
}
})