blob: e07027b2460b5487285f9d0a9274c3721d2e55c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
buildGoModule,
fetchFromGitea,
}:
buildGoModule (finalAttrs: {
pname = "itd";
version = "1.1.1";
# https://gitea.elara.ws/Elara6331/itd/tags
src = fetchFromGitea {
domain = "gitea.elara.ws";
owner = "Elara6331";
repo = "itd";
rev = "v${finalAttrs.version}";
hash = "sha256-Q7UyuokwRZJU84IdsPcSFigiMr6OWye1OnwtclNCs7k=";
};
vendorHash = "sha256-EfsvgjSX3FLJe0b97DSwTkQKJ67MF8ak7DaPRrQrhcs=";
preBuild = ''
echo r${finalAttrs.version} > version.txt
'';
subPackages = [
"."
"cmd/itctl"
];
postInstall = ''
install -Dm644 itd.toml $out/etc/itd.toml
'';
meta = {
description = "Daemon to interact with the PineTime running InfiniTime";
homepage = "https://gitea.elara.ws/Elara6331/itd";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
mindavi
raphaelr
];
};
})
|