diff --git a/pkgs/by-name/ob/oboete/package.nix b/pkgs/by-name/ob/oboete/package.nix index e0dfc358d0e1..37ba6dbc245f 100644 --- a/pkgs/by-name/ob/oboete/package.nix +++ b/pkgs/by-name/ob/oboete/package.nix @@ -7,19 +7,19 @@ nix-update-script, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "oboete"; - version = "0.1.9"; + version = "0.1.10"; src = fetchFromGitHub { owner = "mariinkys"; repo = "oboete"; - tag = version; - hash = "sha256-Xs9o6V/rUtRkUp7F2hJXLz8PP7XWtqx4uaONo3Q23uo="; + tag = finalAttrs.version; + hash = "sha256-I62DQovTa9QWlmA4amnOnp2vomw4/fQuRnj2kY/tdm8="; }; useFetchCargoVendor = true; - cargoHash = "sha256-bhSkQcDqYhkRwqLbiOLXprQnMqjDKRetZ97K1ES5hrw="; + cargoHash = "sha256-HV0Q44T9eSEg/MYpFnRCcifsRfZDlvHJ9viCiC1ouUI="; nativeBuildInputs = [ libcosmicAppHook ]; @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec { meta = { description = "Simple flashcards application for the COSMICâ„¢ desktop written in Rust"; homepage = "https://github.com/mariinkys/oboete"; - changelog = "https://github.com/mariinkys/oboete/releases/tag/${version}"; + changelog = "https://github.com/mariinkys/oboete/releases/tag/${finalAttrs.version}"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ GaetanLepage @@ -41,4 +41,4 @@ rustPlatform.buildRustPackage rec { platforms = lib.platforms.linux; mainProgram = "oboete"; }; -} +})