about summary refs log tree commit diff
path: root/pkgs/servers/alps/default.nix
blob: 2d842165d11d3a4f89ad9885a219f9eb6913488d (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-06-03";

  src = fetchFromSourcehut {
    owner = "~migadu";
    repo = "alps";
    rev = "9cb23b09975e95f6a5952e3718eaf471c3e3510f";
    hash = "sha256-BUV1/BRIXHEf2FU1rdmNgueo8KSUlMKbIpAg2lFs3hA=";
  };

  vendorSha256 = "sha256-cpY+lYM/nAX3nUaFknrRAavxDk8UDzJkoqFjJ1/KWeg=";

  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 booklearner ];
  };
}