rusty-diceware: 0.5.8 -> 0.5.10 (#522029)

This commit is contained in:
Peder Bergebakken Sundt
2026-05-29 19:39:20 +00:00
committed by GitHub
+15 -12
View File
@@ -1,30 +1,33 @@
{
fetchFromGitLab,
lib,
rustPlatform,
fetchFromCodeberg,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rusty-diceware";
version = "0.5.8";
version = "0.5.10";
src = fetchFromGitLab {
owner = "yuvallanger";
__structuredAttrs = true;
src = fetchFromCodeberg {
owner = "kakafarm";
repo = "rusty-diceware";
rev = "diceware-v${finalAttrs.version}";
hash = "sha256-GDWvHHl4EztTaR0jI4XL1I9qE2KSL+q9C8IvLWQF4Ys=";
rev = "53975f17f5f575720d724035bd715dd2dd75986d";
hash = "sha256-uSbJFZ0wqo1RbRP9BWiT4cDg9CV/aSYz432a/qUk7qw=";
};
cargoHash = "sha256-f+jvrokt5kuHYKKfluu4OvI7dzp9rFPlTo4KC4jKb0o=";
doCheck = true;
cargoHash = "sha256-TCNHtDz7dgUx5lBwwIs67mnQcAZ5Xknc6otpl8zRaVc=";
meta = {
description = "Commandline diceware, with or without dice, written in Rustlang";
homepage = "https://gitlab.com/yuvallanger/rusty-diceware";
changelog = "https://gitlab.com/yuvallanger/rusty-diceware/-/blob/v${finalAttrs.version}/CHANGELOG.md?ref_type=heads";
homepage = "https://codeberg.org/kakafarm/rusty-diceware";
changelog = "https://codeberg.org/kakafarm/rusty-diceware/src/branch/master/CHANGELOG.md";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ cherrykitten ];
maintainers = with lib.maintainers; [
cherrykitten
kybe236
];
mainProgram = "diceware";
};
})