tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
watchmate: 0.5.2-unstable-2024-08-13 -> 0.5.3
kyehn
7 months ago
7ffbb3c4
ebe33963
+8
-10
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
wa
watchmate
package.nix
+8
-10
pkgs/by-name/wa/watchmate/package.nix
···
11
11
wrapGAppsHook4,
12
12
glib,
13
13
}:
14
14
-
let
15
15
-
releaseVersion = "0.5.2";
16
16
-
in
17
17
-
rustPlatform.buildRustPackage {
14
14
+
15
15
+
rustPlatform.buildRustPackage (finalAttrs: {
18
16
pname = "watchmate";
19
19
-
version = "${releaseVersion}-unstable-2024-08-13";
17
17
+
version = "0.5.3";
20
18
21
19
src = fetchFromGitHub {
22
20
owner = "azymohliad";
23
21
repo = "watchmate";
24
24
-
rev = "e05edfae94a1973110c6f40f25133d5979f485ab";
25
25
-
hash = "sha256-fHWxn7hFx/9cnLlCHIC6hIJaLd1U3Ii9mJgTJ+Hw63M=";
22
22
+
tag = "v${finalAttrs.version}";
23
23
+
hash = "sha256-quEYcJiNPqbQqSfUf8mF2M4bHb7vnW1WzvF5OflubjE=";
26
24
};
27
25
28
28
-
cargoHash = "sha256-9OR0+OIUpDu37BDC1QJ0r4P/T+DtuHIStFfYT/kPXBE=";
26
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
57
-
changelog = "https://github.com/azymohliad/watchmate/raw/v${releaseVersion}/CHANGELOG.md";
55
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
62
-
}
60
60
+
})