blob: e7a4cddf858036388d9fb0cac538bf379bafd7df (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{
lib,
buildGoLatestModule,
fetchFromGitHub,
nixosTests,
nix-update-script,
}:
let
version = "2.17.6";
in
buildGoLatestModule {
pname = "wakapi";
inherit version;
src = fetchFromGitHub {
owner = "muety";
repo = "wakapi";
tag = version;
hash = "sha256-fKCfjLh/nf6rRqxdGPWfEY9EDh+5sXSKkvzgq7D4ocE=";
};
vendorHash = "sha256-eyldhpDU5fT7tHdsQZ4qUrPlu1QSYaXX8FgksvAXiOw=";
# Not a go module required by the project, contains development utilities
excludedPackages = [ "scripts" ];
# Fix up reported version
postPatch = "echo ${version} > version.txt";
ldflags = [
"-s"
"-w"
];
# <https://github.com/muety/wakapi/blob/8c9442b348e4280b388e1073d805058a951ae78e/.github/workflows/release.yml#L60>
env.GOEXPERIMENT = "greenteagc,jsonv2";
checkFlags =
let
skippedTests = [
# Skip tests that require network access
"TestLoginHandlerTestSuite"
"TestLoadOidcProviders"
"TestUser_MinDataAge"
"TestPublicNetUrl"
"TestConfigTestSuite"
"TestWakatimeRelayMiddlewareTestSuite"
"TestServeHTTP_SkipNonPost"
"TestWakatimeUtils"
"TestWakatimeImporterTestSuite/TestCheckUrl"
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
passthru = {
nixos = nixosTests.wakapi;
updateScript = nix-update-script { };
};
meta = {
homepage = "https://wakapi.dev/";
changelog = "https://github.com/muety/wakapi/releases/tag/${version}";
description = "Minimalist self-hosted WakaTime-compatible backend for coding statistics";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
t4ccer
isabelroses
];
mainProgram = "wakapi";
};
}
|