mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
6f05ed5371
this commit adds the alps webmail package (https://git.sr.ht/~migadu/alps/)
25 lines
613 B
Nix
25 lines
613 B
Nix
{ lib, buildGoModule, fetchFromSourcehut }:
|
|
|
|
buildGoModule rec {
|
|
pname = "alps";
|
|
version = "2021-09-29";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~migadu";
|
|
repo = "alps";
|
|
rev = "d4c35f3c3157bece8e50fd95f2ee1081be30d7ae";
|
|
sha256 = "sha256-xKfRLdfeD7lWdmC0iiq4dOIv2SmzbKH7HcAISCJgdug=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-8fmbv5uPRfzUqsYU95YzsnuFkq4cwj+LN2X3W/yBHyA=";
|
|
|
|
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 ];
|
|
};
|
|
}
|