about summary refs log tree commit diff
path: root/pkgs/servers/alps/default.nix
blob: 8b2a605261b40cbe762664ef040d567b212ed784 (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
{ lib, buildGoModule, fetchFromSourcehut }:

buildGoModule rec {
  pname = "alps";
  version = "2022-03-01";

  src = fetchFromSourcehut {
    owner = "~migadu";
    repo = "alps";
    rev = "f4523b51af0787795973b403b978ff74737a47ef";
    hash = "sha256-un1RGIABFhHKeXPXtLnGayyoGzfo5PZc8VBSHA0PAaw=";
  };

  vendorSha256 = "sha256-Vg0k+YSMg6Ree/jkVV2VQ8RbSbQFUhmUN2MeTBxPeLo=";

  proxyVendor = true;

  meta = with lib; {
    description = "A simple and extensible webmail.";
    homepage = "https://git.sr.ht/~migadu/alps";
    license = licenses.mit;
    maintainers = with maintainers; [ gordias ];
  };
}