fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
78 lines
1.4 KiB
Nix
78 lines
1.4 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 rec {
|
|
pname = "elementary-mail";
|
|
version = "8.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "mail";
|
|
rev = version;
|
|
sha256 = "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 = with lib; {
|
|
description = "Mail app designed for elementary OS";
|
|
homepage = "https://github.com/elementary/mail";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ethancedwards8 ] ++ teams.pantheon.members;
|
|
mainProgram = "io.elementary.mail";
|
|
};
|
|
}
|