blob: 2b47878117751c1bbca3616697f6a1440599e1d3 (
plain) (
blame)
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
|
{ lib,
buildGoModule,
fetchFromGitHub,
nix-update-script
}:
buildGoModule rec {
pname = "glance";
version = "0.5.0";
src = fetchFromGitHub {
owner = "glanceapp";
repo = pname;
rev = "v${version}";
hash = "sha256-37DmLZ8ESJwB2R8o5WjeypKsCQwarF3x8UYz1OQT/tM=";
};
vendorHash = "sha256-Okme73vLc3Pe9+rNlmG8Bj1msKaVb5PaIBsAAeTer6s=";
excludedPackages = [ "scripts/build-and-ship" ];
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/glanceapp/glance";
changelog = "https://github.com/glanceapp/glance/releases/tag/v${version}";
description = "Self-hosted dashboard that puts all your feeds in one place";
mainProgram = "glance";
license = licenses.agpl3Only;
maintainers = with maintainers; [ dvn0 ];
};
}
|