mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
3514ad8b98
Mail client for GNOME 3 https://wiki.gnome.org/Apps/Geary
50 lines
1.7 KiB
Nix
50 lines
1.7 KiB
Nix
{ stdenv, fetchurl, intltool, pkgconfig, gtk3, vala
|
|
, makeWrapper, gdk_pixbuf, cmake, desktop_file_utils
|
|
, libnotify, libcanberra, libsecret, gmime
|
|
, libpthreadstubs, hicolor_icon_theme
|
|
, gnome3, librsvg, gnome_doc_utils, webkitgtk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "geary-0.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/geary/0.6/${name}.tar.xz";
|
|
sha256 = "44ad1dc2c81c50006c751f8e72aa817f07002188da4c29e158060524a1962715";
|
|
};
|
|
|
|
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
|
|
|
buildInputs = [ intltool pkgconfig gtk3 makeWrapper cmake desktop_file_utils gnome_doc_utils
|
|
vala webkitgtk libnotify libcanberra gnome3.libgee libsecret gmime
|
|
libpthreadstubs gnome3.gsettings_desktop_schemas hicolor_icon_theme
|
|
gdk_pixbuf librsvg gnome3.gnome_icon_theme_symbolic gnome3.gnome_icon_theme ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace src/CMakeLists.txt --replace '`pkg-config --variable=girdir gobject-introspection-1.0`' '${webkitgtk}/share/gir-1.0'
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/gsettings-schemas/${name}/
|
|
mv $out/share/glib-2.0 $out/share/gsettings-schemas/${name}
|
|
'';
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/geary" \
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [ ./disable_valadoc.patch ];
|
|
patchFlags = "-p0";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Apps/Geary;
|
|
description = "Mail client for GNOME 3";
|
|
maintainers = with maintainers; [ lethalman ];
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|