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";
|
||
|
|
};
|
||
|
|
})
|