rusty-bash: 0.8.5 -> 1.2.2 (#449375)

This commit is contained in:
Matthias Beyer
2025-10-07 09:48:13 +00:00
committed by GitHub
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 ];
};
}
})