diff --git a/pkgs/servers/web-apps/meme-bingo-web/default.nix b/pkgs/servers/web-apps/meme-bingo-web/default.nix index 6a0228899f08..77c6c5bdaee5 100644 --- a/pkgs/servers/web-apps/meme-bingo-web/default.nix +++ b/pkgs/servers/web-apps/meme-bingo-web/default.nix @@ -1,18 +1,23 @@ -{ lib, fetchFromGitea, rustPlatform, makeWrapper }: +{ lib +, fetchFromGitea +, rustPlatform +, makeWrapper +, nix-update-script +}: rustPlatform.buildRustPackage rec { pname = "meme-bingo-web"; - version = "0.2.0"; + version = "1.0.1"; src = fetchFromGitea { domain = "codeberg.org"; owner = "annaaurora"; repo = "meme-bingo-web"; rev = "v${version}"; - hash = "sha256-6hQra+10TaaQGzwiYfL+WHmGc6f0Hn8Tybd0lA5t0qc="; + hash = "sha256-mOcN9WIXJYRK23tMX29mT5/eSRpqb++zlnJnMizzIfY="; }; - cargoHash = "sha256-/hBymxNAzyfapUL5Whkg4NBLA7Fc8A1npXEa9MXTAz4="; + cargoHash = "sha256-JWVsmw8ha2TSkCXyLPf9Qe1eL2OHB5uu+bSfCaF0lV8="; nativeBuildInputs = [ makeWrapper ]; @@ -25,6 +30,8 @@ rustPlatform.buildRustPackage rec { --set MEME_BINGO_STATIC $out/share/meme-bingo-web/static ''; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Play meme bingo using this neat web app"; mainProgram = "meme-bingo-web";