2020-07-13 08:19:53 +01:00
|
|
|
|
{ fetchurl
|
|
|
|
|
, fetchpatch
|
|
|
|
|
, substituteAll
|
|
|
|
|
, stdenv
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, pkg-config
|
|
|
|
|
, gnome3
|
|
|
|
|
, json-glib
|
|
|
|
|
, gettext
|
|
|
|
|
, libsecret
|
|
|
|
|
, python3
|
|
|
|
|
, polkit
|
|
|
|
|
, networkmanager
|
2020-07-13 08:51:47 +01:00
|
|
|
|
, gtk-doc
|
2020-07-13 08:19:53 +01:00
|
|
|
|
, docbook-xsl-nons
|
|
|
|
|
, at-spi2-core
|
|
|
|
|
, libstartup_notification
|
|
|
|
|
, telepathy-glib
|
|
|
|
|
, telepathy-logger
|
|
|
|
|
, unzip
|
|
|
|
|
, shared-mime-info
|
|
|
|
|
, libgweather
|
|
|
|
|
, librsvg
|
|
|
|
|
, geoclue2
|
|
|
|
|
, perl
|
2020-07-13 08:51:47 +01:00
|
|
|
|
, docbook_xml_dtd_412
|
2020-07-13 08:19:53 +01:00
|
|
|
|
, docbook_xml_dtd_42
|
2020-07-13 08:51:47 +01:00
|
|
|
|
, docbook_xml_dtd_43
|
2020-07-13 08:19:53 +01: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
|
|
|
|
|
, sassc
|
|
|
|
|
, systemd
|
|
|
|
|
, gst_all_1
|
|
|
|
|
, adwaita-icon-theme
|
|
|
|
|
, gnome-bluetooth
|
|
|
|
|
, gnome-clocks
|
|
|
|
|
, gnome-settings-daemon
|
|
|
|
|
, gnome-autoar
|
|
|
|
|
, asciidoc-full
|
2020-03-31 14:26:22 +01:00
|
|
|
|
, bash-completion
|
|
|
|
|
}:
|
2016-09-18 20:35:23 +01: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 11:23:00 +00:00
|
|
|
|
let
|
2020-07-13 08:19:53 +01:00
|
|
|
|
pythonEnv = python3.withPackages (ps: with ps; [ pygobject3 ]);
|
|
|
|
|
in
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "gnome-shell";
|
2020-08-23 17:14:26 +01:00
|
|
|
|
version = "3.36.5";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
2020-07-13 08:51:47 +01:00
|
|
|
|
outputs = [ "out" "devdoc" ];
|
|
|
|
|
|
2018-02-25 20:07:20 +00:00
|
|
|
|
src = fetchurl {
|
2020-08-23 17:14:26 +01:00
|
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
|
|
|
sha256 = "1hj7gmjmy92xndlgw7pzk5m6j2fbzcgfd1pxc32k38gml8qg19d4";
|
2018-02-25 20:07:20 +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;
|
2018-12-25 22:54:17 +00:00
|
|
|
|
inherit libgnomekbd unzip;
|
2019-09-16 09:49:58 +01:00
|
|
|
|
gsettings = "${glib.bin}/bin/gsettings";
|
2018-03-15 12:25:07 +00:00
|
|
|
|
})
|
2019-12-18 14:01:59 +00:00
|
|
|
|
|
2020-03-31 14:26:22 +01:00
|
|
|
|
# Install bash-completions to correct prefix.
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/1194
|
2020-04-13 16:37:45 +01:00
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-shell/commit/9f1ad5d86ddbabaa840eb2860279d53f4e635453.patch";
|
2020-06-02 21:44:52 +01:00
|
|
|
|
sha256 = "18amnqw342vllcrjpfcq232z9xr28vgjsf2z8k73xx70nwah7hvz";
|
2020-04-13 16:37:45 +01:00
|
|
|
|
})
|
2019-12-18 14:01:59 +00:00
|
|
|
|
|
2020-03-31 14:26:22 +01: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
|
|
|
|
|
2020-03-31 14:26:22 +01:00
|
|
|
|
# Make D-Bus services wrappable.
|
|
|
|
|
./wrap-services.patch
|
2020-03-26 03:05:58 +00:00
|
|
|
|
|
2020-03-31 14:26:22 +01:00
|
|
|
|
# Fix greeter logo being too big.
|
|
|
|
|
# https://gitlab.gnome.org/GNOME/gnome-shell/issues/2591
|
2020-03-26 03:05:58 +00:00
|
|
|
|
(fetchpatch {
|
2020-03-31 14:26:22 +01:00
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gnome-shell/commit/ffb8bd5fa7704ce70ce7d053e03549dd15dce5ae.patch";
|
|
|
|
|
revert = true;
|
2020-06-02 21:44:52 +01:00
|
|
|
|
sha256 = "14h7ahlxgly0n3sskzq9dhxzbyb04fn80pv74vz1526396676dzl";
|
2020-03-26 03:05:58 +00:00
|
|
|
|
})
|
2017-10-04 22:50:14 +01:00
|
|
|
|
];
|
|
|
|
|
|
2020-07-13 08:19:53 +01:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
gettext
|
|
|
|
|
docbook-xsl-nons
|
2020-07-13 08:51:47 +01:00
|
|
|
|
docbook_xml_dtd_412
|
2020-07-13 08:19:53 +01:00
|
|
|
|
docbook_xml_dtd_42
|
2020-07-13 08:51:47 +01:00
|
|
|
|
docbook_xml_dtd_43
|
|
|
|
|
gtk-doc
|
2020-07-13 08:19:53 +01: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
|
|
|
|
|
telepathy-glib
|
|
|
|
|
gjs
|
|
|
|
|
mutter
|
|
|
|
|
libpulseaudio
|
|
|
|
|
evolution-data-server
|
|
|
|
|
libical
|
|
|
|
|
gtk3
|
|
|
|
|
gdm
|
|
|
|
|
geoclue2
|
|
|
|
|
adwaita-icon-theme
|
|
|
|
|
gnome-bluetooth
|
|
|
|
|
gnome-clocks # schemas needed
|
|
|
|
|
at-spi2-core
|
|
|
|
|
upower
|
|
|
|
|
ibus
|
|
|
|
|
gnome-desktop
|
|
|
|
|
telepathy-logger
|
|
|
|
|
gnome-settings-daemon
|
|
|
|
|
gobject-introspection
|
|
|
|
|
|
|
|
|
|
# recording
|
|
|
|
|
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 08:42:02 +01:00
|
|
|
|
gnome-autoar
|
|
|
|
|
json-glib
|
2020-07-13 08:19:53 +01:00
|
|
|
|
];
|
|
|
|
|
|
2020-07-13 08:51:47 +01:00
|
|
|
|
mesonFlags = [
|
|
|
|
|
"-Dgtk_doc=true"
|
|
|
|
|
];
|
|
|
|
|
|
2017-11-08 21:00:30 +00: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
|
2017-06-25 17:59:23 +01:00
|
|
|
|
|
2017-11-08 21:00:30 +00: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 22:50:14 +01:00
|
|
|
|
'';
|
2017-06-25 17:59:23 +01:00
|
|
|
|
|
2018-03-15 12:25:07 +00: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 22:57:51 +01:00
|
|
|
|
|
2020-03-31 14:26:22 +01:00
|
|
|
|
postFixup = ''
|
|
|
|
|
# The services need typelibs.
|
|
|
|
|
for svc in org.gnome.Shell.Extensions org.gnome.Shell.Notifications; do
|
|
|
|
|
wrapGApp $out/share/gnome-shell/$svc
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
|
passthru = {
|
|
|
|
|
mozillaPlugin = "/lib/mozilla/plugins";
|
2018-03-15 12:25:07 +00:00
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
|
packageName = "gnome-shell";
|
|
|
|
|
attrPath = "gnome3.gnome-shell";
|
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-03-15 12:25:07 +00:00
|
|
|
|
description = "Core user interface for the GNOME 3 desktop";
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://wiki.gnome.org/Projects/GnomeShell";
|
2018-03-15 12:25:07 +00:00
|
|
|
|
license = licenses.gpl2Plus;
|
2020-04-01 13:40:51 +01:00
|
|
|
|
maintainers = teams.gnome.members;
|
2018-03-15 12:25:07 +00:00
|
|
|
|
platforms = platforms.linux;
|
2016-09-18 20:35:23 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|