lol

watchmate: 0.5.2-unstable-2024-08-13 -> 0.5.3

kyehn 7ffbb3c4 ebe33963

+8 -10
+8 -10
pkgs/by-name/wa/watchmate/package.nix
··· 11 11 wrapGAppsHook4, 12 12 glib, 13 13 }: 14 - let 15 - releaseVersion = "0.5.2"; 16 - in 17 - rustPlatform.buildRustPackage { 14 + 15 + rustPlatform.buildRustPackage (finalAttrs: { 18 16 pname = "watchmate"; 19 - version = "${releaseVersion}-unstable-2024-08-13"; 17 + version = "0.5.3"; 20 18 21 19 src = fetchFromGitHub { 22 20 owner = "azymohliad"; 23 21 repo = "watchmate"; 24 - rev = "e05edfae94a1973110c6f40f25133d5979f485ab"; 25 - hash = "sha256-fHWxn7hFx/9cnLlCHIC6hIJaLd1U3Ii9mJgTJ+Hw63M="; 22 + tag = "v${finalAttrs.version}"; 23 + hash = "sha256-quEYcJiNPqbQqSfUf8mF2M4bHb7vnW1WzvF5OflubjE="; 26 24 }; 27 25 28 - cargoHash = "sha256-9OR0+OIUpDu37BDC1QJ0r4P/T+DtuHIStFfYT/kPXBE="; 26 + cargoHash = "sha256-k9nvg5wp95OZDYyRLL7s++fJHjO6r+lZtodJLPev988="; 29 27 30 28 nativeBuildInputs = [ 31 29 pkg-config ··· 54 52 description = "PineTime smart watch companion app for Linux phone and desktop"; 55 53 mainProgram = "watchmate"; 56 54 homepage = "https://github.com/azymohliad/watchmate"; 57 - changelog = "https://github.com/azymohliad/watchmate/raw/v${releaseVersion}/CHANGELOG.md"; 55 + changelog = "https://github.com/azymohliad/watchmate/raw/v${finalAttrs.version}/CHANGELOG.md"; 58 56 license = licenses.gpl3Plus; 59 57 maintainers = with maintainers; [ chuangzhu ]; 60 58 platforms = platforms.linux; 61 59 }; 62 - } 60 + })