summary refs log tree commit diff
path: root/pkgs/servers/alps/default.nix
blob: fb10a5369f1d395cab19e5d9018aa77b6462d82b (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 = "2021-09-29";

  src = fetchFromSourcehut {
    owner = "~migadu";
    repo = "alps";
    rev = "d4c35f3c3157bece8e50fd95f2ee1081be30d7ae";
    sha256 = "sha256-xKfRLdfeD7lWdmC0iiq4dOIv2SmzbKH7HcAISCJgdug=";
  };

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