Skip to content

Commit

Permalink
stalwart-mail.webadmin: init at 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
onny committed Aug 19, 2024
1 parent c3a10ad commit a6bfe49
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/st/stalwart-mail/webadmin.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:

rustPlatform.buildRustPackage rec {
pname = "stalwart-mail";
version = "0.1.10";

src = fetchFromGitHub {
owner = "stalwartlabs";
repo = "webadmin";
rev = "refs/tags/v${version}";
hash = "sha256-8VtoeOJiLOcDazWUS8WMPvecUWGhYyzs7Eg3U57Xpms=";
};

cargoHash = "sha256-aRRxSCUUqc6oCpqy83ACwo+mirEYzlP/UFW94sS6KJA=";

meta = with lib; {
description = "Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)";
homepage = "https://github.com/stalwartlabs/webadmin";
changelog = "https://github.com/stalwartlabs/mail-server/blob/${version}/CHANGELOG";
license = licenses.agpl3Only;
maintainers = with maintainers; [ onny ];
};
}

0 comments on commit a6bfe49

Please sign in to comment.