3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-3/core/gnome-shell/default.nix

127 lines
4.4 KiB
Nix
Raw Normal View History

2019-12-18 14:01:59 +00:00
{ fetchurl, fetchpatch, substituteAll, stdenv, meson, ninja, pkgconfig, gnome3, json-glib, gettext, libsecret
, python3, libsoup, polkit, clutter, networkmanager, docbook_xsl , docbook_xsl_ns, at-spi2-core
2018-03-15 12:25:07 +00:00
, libstartup_notification, telepathy-glib, telepathy-logger, libXtst, unzip, glibcLocales, shared-mime-info
2018-05-08 01:38:21 +01:00
, libgweather, libcanberra-gtk3, librsvg, geoclue2, perl, docbook_xml_dtd_42, desktop-file-utils
2019-12-18 14:01:59 +00:00
, libpulseaudio, libical, gobject-introspection, wrapGAppsHook, libxslt, gcr
2020-03-16 00:11:30 +00:00
, accountsservice, gdk-pixbuf, gdm, upower, ibus, libnma, libgnomekbd, gnome-desktop
2019-02-13 21:47:50 +00:00
, gsettings-desktop-schemas, gnome-keyring, glib, gjs, mutter, evolution-data-server, gtk3
, sassc, systemd, gst_all_1, adwaita-icon-theme, gnome-bluetooth, gnome-clocks, gnome-settings-daemon
, gnome-autoar, asciidoc-full
, bash-completion
}:
# http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.10.2.1.ebuild?revision=1.3&view=markup
let
pythonEnv = python3.withPackages ( ps: with ps; [ pygobject3 ] );
in stdenv.mkDerivation rec {
pname = "gnome-shell";
version = "3.36.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-shell/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0696qw6bmbga30qlvh1k6bkiajl7877j8yis4bwmi1wxkcmkh854";
};
2017-10-04 22:50:14 +01:00
LANG = "en_US.UTF-8";
2018-03-15 12:25:07 +00:00
nativeBuildInputs = [
meson ninja pkgconfig gettext docbook_xsl docbook_xsl_ns docbook_xml_dtd_42 perl wrapGAppsHook glibcLocales
sassc desktop-file-utils libxslt.bin python3 asciidoc-full
2018-03-15 12:25:07 +00:00
];
2019-02-13 21:47:50 +00:00
buildInputs = [
systemd
2018-03-15 12:25:07 +00:00
gsettings-desktop-schemas gnome-keyring glib gcr json-glib accountsservice
2019-12-18 14:01:59 +00:00
libsecret libsoup polkit gdk-pixbuf librsvg
networkmanager libstartup_notification telepathy-glib
2018-03-15 12:25:07 +00:00
libXtst gjs mutter libpulseaudio evolution-data-server
2019-12-18 14:01:59 +00:00
libical gtk3 gdm libcanberra-gtk3 geoclue2
2019-02-13 21:47:50 +00:00
adwaita-icon-theme gnome-bluetooth
gnome-clocks # schemas needed
at-spi2-core upower ibus gnome-desktop telepathy-logger gnome-settings-daemon
gobject-introspection
gnome-autoar
2019-12-18 14:01:59 +00:00
# recording
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
2019-12-18 14:01:59 +00:00
gst_all_1.gst-plugins-good
# not declared at build time, but typelib is needed at runtime
2020-03-16 00:11:30 +00:00
libgweather libnma
# for gnome-extension tool
bash-completion
2018-03-15 12:25:07 +00:00
];
2017-10-04 22:50:14 +01:00
patches = [
2019-12-18 14:01:59 +00:00
# Hardcode paths to various dependencies so that they can be found at runtime.
2018-03-15 12:25:07 +00:00
(substituteAll {
src = ./fix-paths.patch;
inherit libgnomekbd unzip;
gsettings = "${glib.bin}/bin/gsettings";
2018-03-15 12:25:07 +00:00
})
2019-12-18 14:01:59 +00:00
# Install bash-completions to correct prefix.
# https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/1194
./fix-bash-completion.patch
2019-12-18 14:01:59 +00:00
# Use absolute path for libshew installation to make our patched gobject-introspection
# aware of the location to hardcode in the generated GIR file.
./shew-gir-path.patch
2019-12-18 14:01:59 +00:00
# Make D-Bus services wrappable.
./wrap-services.patch
# Fix greeter logo being too big.
# https://gitlab.gnome.org/GNOME/gnome-shell/issues/2591
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gnome-shell/commit/ffb8bd5fa7704ce70ce7d053e03549dd15dce5ae.patch";
revert = true;
sha256 = "9DdzjEnDiBL+JmdfgKwjYPn1O2wJ/6n1sMDT1ylUB5I=";
})
2017-10-04 22:50:14 +01:00
];
postPatch = ''
patchShebangs src/data-to-c.pl
2019-12-18 14:01:59 +00:00
chmod +x meson/postinstall.py
patchShebangs meson/postinstall.py
substituteInPlace src/gnome-shell-extension-tool.in --replace "@PYTHON@" "${pythonEnv}/bin/python"
substituteInPlace src/gnome-shell-perf-tool.in --replace "@PYTHON@" "${pythonEnv}/bin/python"
2017-10-04 22:50:14 +01:00
'';
2018-03-15 12:25:07 +00:00
preFixup = ''
gappsWrapperArgs+=(
# Until glibs xdgmime is patched
# Fixes “Failed to load resource:///org/gnome/shell/theme/noise-texture.png: Unrecognized image file format”
--prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
)
'';
postFixup = ''
# The services need typelibs.
for svc in org.gnome.Shell.Extensions org.gnome.Shell.Notifications; do
wrapGApp $out/share/gnome-shell/$svc
done
'';
passthru = {
mozillaPlugin = "/lib/mozilla/plugins";
2018-03-15 12:25:07 +00:00
updateScript = gnome3.updateScript {
packageName = "gnome-shell";
attrPath = "gnome3.gnome-shell";
};
};
meta = with stdenv.lib; {
2018-03-15 12:25:07 +00:00
description = "Core user interface for the GNOME 3 desktop";
homepage = "https://wiki.gnome.org/Projects/GnomeShell";
2018-03-15 12:25:07 +00:00
license = licenses.gpl2Plus;
maintainers = gnome3.maintainers;
2018-03-15 12:25:07 +00:00
platforms = platforms.linux;
};
}