3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/alps/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
623 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromSourcehut }:
buildGoModule rec {
pname = "alps";
2022-06-04 20:43:01 +01:00
version = "2022-06-03";
src = fetchFromSourcehut {
owner = "~migadu";
repo = "alps";
2022-06-04 20:43:01 +01:00
rev = "9cb23b09975e95f6a5952e3718eaf471c3e3510f";
hash = "sha256-BUV1/BRIXHEf2FU1rdmNgueo8KSUlMKbIpAg2lFs3hA=";
};
2022-06-04 20:43:01 +01:00
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;
2022-06-04 20:43:01 +01:00
maintainers = with maintainers; [ gordias booklearner ];
};
}