wallust: 3.2.0 -> 3.3.0

This commit is contained in:
Kiara Grouwstra
2025-03-24 19:19:20 +01:00
committed by Masum Reza
parent f56e94b17f
commit 764fe4dd93
+7 -10
View File
@@ -7,23 +7,20 @@
makeWrapper,
installShellFiles,
}:
let
version = "3.2.0";
in
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "wallust";
inherit version;
version = "3.3.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "explosion-mental";
repo = "wallust";
rev = version;
hash = "sha256-71vLHuzLcNTvwE7j6iIQZJWD18IQnA0OwF/cOAZCLL8=";
rev = finalAttrs.version;
hash = "sha256-n3FXPlm8nructXh+Wc7BgJvxas6OFHEPbTe2QWjEpsg=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-TxlGzfupx9661T8nGvSxurz9cxc9C3udOnoU3PXVCdQ=";
cargoHash = "sha256-LIHSnRPrx4gHZkpKEEZ1Um609i3vv0JGXLpbiSD08P4=";
nativeBuildInputs = [
makeWrapper
@@ -53,7 +50,7 @@ rustPlatform.buildRustPackage {
onemoresuza
iynaix
];
downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${version}";
downloadPage = "https://codeberg.org/explosion-mental/wallust/releases/tag/${finalAttrs.version}";
mainProgram = "wallust";
};
}
})