2020-07-13 09:19:53 +02:00
|
|
|
|
{ fetchurl
|
|
|
|
|
, fetchpatch
|
|
|
|
|
, substituteAll
|
2021-01-11 08:54:33 +01:00
|
|
|
|
, lib, stdenv
|
2020-07-13 09:19:53 +02:00
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, pkg-config
|
2021-05-07 23:18:14 +02:00
|
|
|
|
, gnome
|
2020-07-13 09:19:53 +02:00
|
|
|
|
, json-glib
|
|
|
|
|
, gettext
|
|
|
|
|
, libsecret
|
|
|
|
|
, python3
|
|
|
|
|
, polkit
|
|
|
|
|
, networkmanager
|
2020-07-13 09:51:47 +02:00
|
|
|
|
, gtk-doc
|
2020-07-13 09:19:53 +02:00
|
|
|
|
, docbook-xsl-nons
|
|
|
|
|
, at-spi2-core
|
|
|
|
|
, libstartup_notification
|
|
|
|
|
, unzip
|
|
|
|
|
, shared-mime-info
|
|
|
|
|
, libgweather
|
|
|
|
|
, librsvg
|
|
|
|
|
, geoclue2
|
|
|
|
|
, perl
|
2021-03-21 07:03:13 +01:00
|
|
|
|
, docbook_xml_dtd_45
|
2020-07-13 09:19:53 +02:00
|
|
|
|
, desktop-file-utils
|
|
|
|
|
, libpulseaudio
|
|
|
|
|
, libical
|
|
|
|
|
, gobject-introspection
|
|
|
|
|
, wrapGAppsHook
|
|
|
|
|
, libxslt
|
|
|
|
|
, gcr
|
|
|
|
|
, accountsservice
|
|
|
|
|
, gdk-pixbuf
|
|
|
|
|
, gdm
|
|
|
|
|
, upower
|
|
|
|
|
, ibus
|
|
|
|
|
, libnma
|
|
|
|
|
, libgnomekbd
|
|
|
|
|
, gnome-desktop
|
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
|
, gnome-keyring
|
|
|
|
|
, glib
|
|
|
|
|
, gjs
|
|
|
|
|
, mutter
|
|
|
|
|
, evolution-data-server
|
|
|
|
|
, gtk3
|
2021-03-21 07:03:13 +01:00
|
|
|
|
, gtk4
|
2020-07-13 09:19:53 +02:00
|
|
|
|
, sassc
|
|
|
|
|
, systemd
|
2020-09-18 16:34:06 +02:00
|
|
|
|
, pipewire
|
2020-07-13 09:19:53 +02:00
|
|
|
|
, gst_all_1
|
|
|
|
|
, adwaita-icon-theme
|
|
|
|
|
, gnome-bluetooth
|
|
|
|
|
, gnome-clocks
|
|
|
|
|
, gnome-settings-daemon
|
|
|
|
|
, gnome-autoar
|
|
|
|
|
, asciidoc-full
|
2020-03-31 15:26:22 +02:00
|
|
|
|
, bash-completion
|
2021-04-17 08:57:24 +02:00
|
|
|
|
, mesa
|
2020-03-31 15:26:22 +02:00
|
|
|
|
}:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
|
|
# 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
|
2017-02-18 12:23:00 +01:00
|
|
|
|
let
|
2020-07-13 09:19:53 +02:00
|
|
|
|
pythonEnv = python3.withPackages (ps: with ps; [ pygobject3 ]);
|
|
|
|
|
in
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
|
pname = "gnome-shell";
|
2021-10-01 06:41:40 +02:00
|
|
|
|
version = "41.0";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
2020-07-13 09:51:47 +02:00
|
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
|
|
2021-05-13 19:54:21 +02:00
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://gnome/sources/gnome-shell/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
2021-10-01 06:41:40 +02:00
|
|
|
|
sha256 = "Uvlx6FFA5d50uTae9mVuSc6Vrx8jL8Hg3x8EYSmrT2U=";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
};
|
|
|
|
|
|
2017-10-04 23:50:14 +02:00
|
|
|
|
patches = [
|
2019-12-18 15:01:59 +01:00
|
|
|
|
# Hardcode paths to various dependencies so that they can be found at runtime.
|
2018-03-15 13:25:07 +01:00
|
|
|
|
(substituteAll {
|
|
|
|
|
src = ./fix-paths.patch;
|
2018-12-25 23:54:17 +01:00
|
|
|
|
inherit libgnomekbd unzip;
|
2019-09-16 10:49:58 +02:00
|
|
|
|
gsettings = "${glib.bin}/bin/gsettings";
|
2018-03-15 13:25:07 +01:00
|
|
|
|
})
|
2019-12-18 15:01:59 +01:00
|
|
|
|
|
2020-03-31 15:26:22 +02: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 15:01:59 +01:00
|
|
|
|
|
2020-03-31 15:26:22 +02:00
|
|
|
|
# Make D-Bus services wrappable.
|
|
|
|
|
./wrap-services.patch
|
2020-03-26 04:05:58 +01:00
|
|
|
|
|
2020-03-31 15:26:22 +02:00
|
|
|
|
# Fix greeter logo being too big.
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/gnome-shell/issues/2591
|
2020-03-26 04:05:58 +01:00
|
|
|
|
(fetchpatch {
|
2020-03-31 15:26:22 +02:00
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-shell/commit/ffb8bd5fa7704ce70ce7d053e03549dd15dce5ae.patch";
|
|
|
|
|
revert = true;
|
2020-06-02 22:44:52 +02:00
|
|
|
|
sha256 = "14h7ahlxgly0n3sskzq9dhxzbyb04fn80pv74vz1526396676dzl";
|
2020-03-26 04:05:58 +01:00
|
|
|
|
})
|
2021-05-03 21:54:44 +02:00
|
|
|
|
|
|
|
|
|
# Work around failing fingerprint auth
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://src.fedoraproject.org/rpms/gnome-shell/raw/9a647c460b651aaec0b8a21f046cc289c1999416/f/0001-gdm-Work-around-failing-fingerprint-auth.patch";
|
|
|
|
|
sha256 = "pFvZli3TilUt6YwdZztpB8Xq7O60XfuWUuPMMVSpqLw=";
|
|
|
|
|
})
|
2021-10-01 06:41:40 +02:00
|
|
|
|
|
|
|
|
|
# Make color picker in GTK work again
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1990
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-shell/-/commit/a3dcdaae30bdcbadec7ba3fa31c9eb0bb2a4c8c2.patch";
|
|
|
|
|
sha256 = "1UTWGZ5CiVJVCYcepaf+A6/8X/s6jUMsYB4BJ7VTjxk=";
|
|
|
|
|
})
|
2017-10-04 23:50:14 +02:00
|
|
|
|
];
|
|
|
|
|
|
2020-07-13 09:19:53 +02:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
gettext
|
|
|
|
|
docbook-xsl-nons
|
2021-03-21 07:03:13 +01:00
|
|
|
|
docbook_xml_dtd_45
|
2020-07-13 09:51:47 +02:00
|
|
|
|
gtk-doc
|
2020-07-13 09:19:53 +02:00
|
|
|
|
perl
|
|
|
|
|
wrapGAppsHook
|
|
|
|
|
sassc
|
|
|
|
|
desktop-file-utils
|
|
|
|
|
libxslt.bin
|
|
|
|
|
python3
|
|
|
|
|
asciidoc-full
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
|
systemd
|
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
|
gnome-keyring
|
|
|
|
|
glib
|
|
|
|
|
gcr
|
|
|
|
|
accountsservice
|
|
|
|
|
libsecret
|
|
|
|
|
polkit
|
|
|
|
|
gdk-pixbuf
|
|
|
|
|
librsvg
|
|
|
|
|
networkmanager
|
|
|
|
|
libstartup_notification
|
|
|
|
|
gjs
|
|
|
|
|
mutter
|
|
|
|
|
libpulseaudio
|
|
|
|
|
evolution-data-server
|
|
|
|
|
libical
|
|
|
|
|
gtk3
|
2021-03-21 07:03:13 +01:00
|
|
|
|
gtk4
|
2020-07-13 09:19:53 +02:00
|
|
|
|
gdm
|
|
|
|
|
geoclue2
|
|
|
|
|
adwaita-icon-theme
|
|
|
|
|
gnome-bluetooth
|
|
|
|
|
gnome-clocks # schemas needed
|
|
|
|
|
at-spi2-core
|
|
|
|
|
upower
|
|
|
|
|
ibus
|
|
|
|
|
gnome-desktop
|
|
|
|
|
gnome-settings-daemon
|
|
|
|
|
gobject-introspection
|
2021-04-17 08:57:24 +02:00
|
|
|
|
mesa
|
2020-07-13 09:19:53 +02:00
|
|
|
|
|
|
|
|
|
# recording
|
2020-09-18 16:34:06 +02:00
|
|
|
|
pipewire
|
2020-07-13 09:19:53 +02:00
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
|
gst_all_1.gst-plugins-good
|
|
|
|
|
|
|
|
|
|
# not declared at build time, but typelib is needed at runtime
|
|
|
|
|
libgweather
|
|
|
|
|
libnma
|
|
|
|
|
|
|
|
|
|
# for gnome-extension tool
|
|
|
|
|
bash-completion
|
2020-07-13 09:42:02 +02:00
|
|
|
|
gnome-autoar
|
|
|
|
|
json-glib
|
2020-07-13 09:19:53 +02:00
|
|
|
|
];
|
|
|
|
|
|
2020-07-13 09:51:47 +02:00
|
|
|
|
mesonFlags = [
|
|
|
|
|
"-Dgtk_doc=true"
|
|
|
|
|
];
|
|
|
|
|
|
2017-11-08 22:00:30 +01:00
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs src/data-to-c.pl
|
2019-12-18 15:01:59 +01:00
|
|
|
|
chmod +x meson/postinstall.py
|
|
|
|
|
patchShebangs meson/postinstall.py
|
2017-06-25 18:59:23 +02:00
|
|
|
|
|
2017-11-08 22:00:30 +01:00
|
|
|
|
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 23:50:14 +02:00
|
|
|
|
'';
|
2017-06-25 18:59:23 +02:00
|
|
|
|
|
2018-03-15 13:25:07 +01:00
|
|
|
|
preFixup = ''
|
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
|
# Until glib’s 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"
|
|
|
|
|
)
|
|
|
|
|
'';
|
2016-10-01 23:57:51 +02:00
|
|
|
|
|
2020-03-31 15:26:22 +02:00
|
|
|
|
postFixup = ''
|
|
|
|
|
# The services need typelibs.
|
2021-03-21 07:03:13 +01:00
|
|
|
|
for svc in org.gnome.ScreenSaver org.gnome.Shell.Extensions org.gnome.Shell.Notifications org.gnome.Shell.Screencast; do
|
2020-03-31 15:26:22 +02:00
|
|
|
|
wrapGApp $out/share/gnome-shell/$svc
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
|
2016-09-18 21:35:23 +02:00
|
|
|
|
passthru = {
|
|
|
|
|
mozillaPlugin = "/lib/mozilla/plugins";
|
2021-05-07 23:18:14 +02:00
|
|
|
|
updateScript = gnome.updateScript {
|
2018-03-15 13:25:07 +01:00
|
|
|
|
packageName = "gnome-shell";
|
2021-05-07 23:18:14 +02:00
|
|
|
|
attrPath = "gnome.gnome-shell";
|
2018-03-15 13:25:07 +01:00
|
|
|
|
};
|
2016-09-18 21:35:23 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
|
meta = with lib; {
|
2018-03-15 13:25:07 +01:00
|
|
|
|
description = "Core user interface for the GNOME 3 desktop";
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "https://wiki.gnome.org/Projects/GnomeShell";
|
2018-03-15 13:25:07 +01:00
|
|
|
|
license = licenses.gpl2Plus;
|
2020-04-01 14:40:51 +02:00
|
|
|
|
maintainers = teams.gnome.members;
|
2018-03-15 13:25:07 +01:00
|
|
|
|
platforms = platforms.linux;
|
2016-09-18 21:35:23 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|