gnome-terminal: enable GNOME Shell search provider (for 3.18)

[This is a re-application of the patch that was originally written for
GNOME 3.16. It was lost during the transition to GNOME 3.18.]

Silly ./configure, it looks for dbus file from gnome-shell in the
installation tree of the package it is configuring. Fix by copying the
needed file from gnome-shell before ./configure is run.

This change makes gnome-shell a build time dependency (not runtime).
This commit is contained in:
Bjørn Forsman 2016-01-04 15:50:46 +01:00
parent 74cba61eb0
commit ca717d0d65

View File

@ -11,8 +11,15 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2
desktop_file_utils wrapGAppsHook ];
# Silly ./configure, it looks for dbus file from gnome-shell in the
# installation tree of the package it is configuring.
preConfigure = ''
mkdir -p "$out/share/dbus-1/interfaces"
cp "${gnome3.gnome_shell}/share/dbus-1/interfaces/org.gnome.ShellSearchProvider2.xml" "$out/share/dbus-1/interfaces"
'';
# FIXME: enable for gnome3
configureFlags = [ "--disable-search-provider" "--disable-migration" ];
configureFlags = [ "--disable-migration" ];
meta = with stdenv.lib; {
description = "The GNOME Terminal Emulator";