franz: use wrapGAppsHook
I encountered crashes while opening the file selection dialog. ``` (franz:11597): GLib-GIO-ERROR **: 14:08:20.102: No GSettings schemas are installed on the system [1] 11597 trace trap franz ``` This error is also presented in various other gtk applications (e.g. https://github.com/NixOS/nixpkgs/issues/45286). I used the same trick to fix this error.
This commit is contained in:
parent
e3afc85cba
commit
5fff5efea2
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, makeWrapper, autoPatchelfHook, dpkg
|
{ stdenv, fetchurl, makeWrapper, wrapGAppsHook, autoPatchelfHook, dpkg
|
||||||
, xorg, atk, glib, pango, gdk_pixbuf, cairo, freetype, fontconfig, gtk3
|
, xorg, atk, glib, pango, gdk_pixbuf, cairo, freetype, fontconfig, gtk3
|
||||||
, gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify, xdg_utils }:
|
, gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify, xdg_utils }:
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ in stdenv.mkDerivation rec {
|
|||||||
# don't remove runtime deps
|
# don't remove runtime deps
|
||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ autoPatchelfHook makeWrapper dpkg ];
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper wrapGAppsHook dpkg ];
|
||||||
buildInputs = (with xorg; [
|
buildInputs = (with xorg; [
|
||||||
libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes
|
libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes
|
||||||
libXrender libX11 libXtst libXScrnSaver
|
libXrender libX11 libXtst libXScrnSaver
|
||||||
@ -37,8 +37,12 @@ in stdenv.mkDerivation rec {
|
|||||||
--replace Exec=\"/opt/Franz/franz\" Exec=franz
|
--replace Exec=\"/opt/Franz/franz\" Exec=franz
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
dontWrapGApps = true;
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
wrapProgram $out/opt/Franz/franz --prefix PATH : ${xdg_utils}/bin
|
wrapProgram $out/opt/Franz/franz \
|
||||||
|
--prefix PATH : ${xdg_utils}/bin \
|
||||||
|
"''${gappsWrapperArgs[@]}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user