Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
93 lines
1.8 KiB
Nix
93 lines
1.8 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchzip,
|
|
rustPlatform,
|
|
|
|
# native build inputs
|
|
pkg-config,
|
|
installShellFiles,
|
|
makeWrapper,
|
|
mandoc,
|
|
rustfmt,
|
|
file,
|
|
writableTmpDirAsHomeHook,
|
|
|
|
# build inputs
|
|
openssl,
|
|
dbus,
|
|
sqlite,
|
|
|
|
# runtime deps
|
|
gpgme,
|
|
gnum4,
|
|
|
|
withNotmuch ? true,
|
|
notmuch,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "meli";
|
|
version = "0.8.12";
|
|
|
|
src = fetchzip {
|
|
urls = [
|
|
"https://git.meli-email.org/meli/meli/archive/v${version}.tar.gz"
|
|
"https://codeberg.org/meli/meli/archive/v${version}.tar.gz"
|
|
"https://github.com/meli/meli/archive/refs/tags/v${version}.tar.gz"
|
|
];
|
|
hash = "sha256-Dp0WI1Cl+m7oxZ/4zEi0TtOwqRX681jZht9bNMFnmsU=";
|
|
};
|
|
|
|
cargoHash = "sha256-DJtk8xLppXdl9sSt6GcaXwZ5MEIY/s/z/bdcdr8YdLw=";
|
|
|
|
# Needed to get openssl-sys to use pkg-config
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
makeWrapper
|
|
mandoc
|
|
(rustfmt.override { asNightly = true; })
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
dbus
|
|
sqlite
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
file
|
|
gnum4
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
postInstall = ''
|
|
installManPage meli/docs/*.{1,5,7}
|
|
|
|
wrapProgram $out/bin/meli \
|
|
--prefix LD_LIBRARY_PATH : ${
|
|
lib.makeLibraryPath ([ gpgme ] ++ lib.optional withNotmuch notmuch)
|
|
} \
|
|
--prefix PATH : ${lib.makeBinPath [ gnum4 ]}
|
|
'';
|
|
|
|
checkFlags = [
|
|
"--skip=test_cli_subcommands" # panicking due to sandbox
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal e-mail client and e-mail client library";
|
|
mainProgram = "meli";
|
|
homepage = "https://meli.delivery";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [
|
|
_0x4A6F
|
|
matthiasbeyer
|
|
];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|