25 lines
623 B
Nix
25 lines
623 B
Nix
{ 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 ];
|
|
};
|
|
}
|