forked from mirrors/nixpkgs
69698ec11c
* gnome3: only maintain single GNOME 3 package set GNOME 3 was split into 3.10 and 3.12 in #2694. Unfortunately, we barely have the resources to update a single version of GNOME. Maintaining multiple versions just does not make sense. Additionally, it makes viewing history using most Git tools bothersome. This commit renames `pkgs/desktops/gnome-3/3.24` to `pkgs/desktops/gnome-3`, removes the config variable for choosing packageset (`environment.gnome3.packageSet`), updates the hint in maintainer script, and removes the `gnome3_24` derivation from `all-packages.nix`. Closes: #29329 * maintainers/scripts/gnome: Use fixed GNOME 3 directory Since we now allow only a single GNOME 3 package set, specifying the working directory is not necessary. This commit sets the directory to `pkgs/desktops/gnome-3`.
50 lines
1.7 KiB
Nix
50 lines
1.7 KiB
Nix
{ stdenv, fetchurl, intltool, pkgconfig, gtk3, vala_0_32
|
|
, makeWrapper, gdk_pixbuf, cmake, desktop_file_utils
|
|
, libnotify, libcanberra_gtk3, libsecret, gmime
|
|
, libpthreadstubs, sqlite
|
|
, gnome3, librsvg, gnome_doc_utils, webkitgtk }:
|
|
|
|
let
|
|
majorVersion = "0.11";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "geary-${majorVersion}.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz";
|
|
sha256 = "1r42ijxafach5lv8ibs6y0l5k4nacjg427dnma8fj00xr1sri7j1";
|
|
};
|
|
|
|
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
|
|
|
buildInputs = [ intltool pkgconfig gtk3 makeWrapper cmake desktop_file_utils gnome_doc_utils
|
|
vala_0_32 webkitgtk libnotify libcanberra_gtk3 gnome3.libgee libsecret gmime sqlite
|
|
libpthreadstubs gnome3.gsettings_desktop_schemas gnome3.gcr
|
|
gdk_pixbuf librsvg gnome3.defaultIconTheme ];
|
|
|
|
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;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Apps/Geary;
|
|
description = "Mail client for GNOME 3";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|