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
80 lines
1.5 KiB
Nix
80 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
pkg-config,
|
|
meson,
|
|
ninja,
|
|
vala,
|
|
gtk3,
|
|
libxml2,
|
|
libhandy,
|
|
libportal-gtk3,
|
|
webkitgtk_4_1,
|
|
elementary-gtk-theme,
|
|
elementary-icon-theme,
|
|
folks,
|
|
glib-networking,
|
|
granite,
|
|
evolution-data-server,
|
|
wrapGAppsHook3,
|
|
libgee,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "elementary-mail";
|
|
version = "8.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "mail";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-6T/OTiuDVAPBqp8BPawf/MVEuWTPrLa3/N1Blvt/7Q8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
libxml2
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
elementary-icon-theme
|
|
evolution-data-server
|
|
folks
|
|
glib-networking
|
|
granite
|
|
gtk3
|
|
libgee
|
|
libhandy
|
|
libportal-gtk3
|
|
webkitgtk_4_1
|
|
];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
# The GTK theme is hardcoded.
|
|
--prefix XDG_DATA_DIRS : "${elementary-gtk-theme}/share"
|
|
# The icon theme is hardcoded.
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
|
|
)
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Mail app designed for elementary OS";
|
|
homepage = "https://github.com/elementary/mail";
|
|
changelog = "https://github.com/elementary/mail/releases/tag/${finalAttrs.version}";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ ethancedwards8 ];
|
|
teams = [ lib.teams.pantheon ];
|
|
mainProgram = "io.elementary.mail";
|
|
};
|
|
})
|