nixpkgs/pkgs/servers/mail/stalwart/default.nix

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

77 lines
1.5 KiB
Nix
Raw Normal View History

2023-07-23 16:13:47 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, protobuf
, bzip2
, openssl
, sqlite
, zstd
, stdenv
, darwin
2023-07-28 08:32:22 +00:00
, nix-update-script
, nixosTests
, rocksdb_8_3
2023-07-23 16:13:47 +00:00
}:
let
2024-02-16 19:12:34 +00:00
version = "0.6.0";
rocksdb = rocksdb_8_3;
2023-07-23 16:13:47 +00:00
in
rustPlatform.buildRustPackage {
pname = "stalwart-mail";
inherit version;
src = fetchFromGitHub {
owner = "stalwartlabs";
repo = "mail-server";
rev = "v${version}";
2024-02-16 19:12:34 +00:00
hash = "sha256-OHwUWSUW6ovLQTxnuUrolQGhxbhp4YqKSH+ZTpe2WXc=";
2023-07-23 16:13:47 +00:00
fetchSubmodules = true;
};
cargoLock = {
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [
pkg-config
protobuf
2024-01-13 19:22:43 +00:00
rustPlatform.bindgenHook
2023-07-23 16:13:47 +00:00
];
buildInputs = [
bzip2
openssl
sqlite
zstd
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.SystemConfiguration
];
env = {
OPENSSL_NO_VENDOR = true;
ZSTD_SYS_USE_PKG_CONFIG = true;
2024-01-13 19:22:43 +00:00
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
2023-07-23 16:13:47 +00:00
};
# Tests require reading to /etc/resolv.conf
doCheck = false;
passthru = {
update-script = nix-update-script { };
stalwart-mail = nixosTests.stalwart-mail;
};
2023-07-28 08:32:22 +00:00
2023-07-23 16:13:47 +00:00
meta = with lib; {
description = "Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)";
homepage = "https://github.com/stalwartlabs/mail-server";
changelog = "https://github.com/stalwartlabs/mail-server/blob/${version}/CHANGELOG";
license = licenses.agpl3Only;
maintainers = with maintainers; [ happysalada ];
};
}