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
611 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromSourcehut }:
buildGoModule rec {
pname = "alps";
2022-04-26 23:11:30 +02:00
version = "2022-03-01";
src = fetchFromSourcehut {
owner = "~migadu";
repo = "alps";
2022-04-26 23:11:30 +02:00
rev = "f4523b51af0787795973b403b978ff74737a47ef";
hash = "sha256-un1RGIABFhHKeXPXtLnGayyoGzfo5PZc8VBSHA0PAaw=";
};
2022-01-31 02:37:41 +01:00
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 ];
};
}