gimp: fix launch without icon theme
This commit is contained in:
parent
bb180360b9
commit
6b4cad201b
|
@ -100,9 +100,7 @@ in gimp.overrideAttrs (old: rec {
|
||||||
"-Dappdata-test=disabled"
|
"-Dappdata-test=disabled"
|
||||||
];
|
];
|
||||||
enableParallelBuilding = false;
|
enableParallelBuilding = false;
|
||||||
env = old.env // {
|
env = old.env // { GIO_EXTRA_MODULES = "${glib-networking}/lib/gio/modules"; };
|
||||||
GIO_EXTRA_MODULES = "${glib-networking}/lib/gio/modules";
|
|
||||||
};
|
|
||||||
preConfigure = "";
|
preConfigure = "";
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs \
|
patchShebangs \
|
||||||
|
@ -126,7 +124,10 @@ in gimp.overrideAttrs (old: rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ graphviz ]}:$out/bin")
|
gappsWrapperArgs+=(\
|
||||||
|
--prefix PATH : "${lib.makeBinPath [ graphviz ]}:$out/bin" \
|
||||||
|
--suffix XDG_DATA_DIRS : "${gnome.adwaita-icon-theme}/share" \
|
||||||
|
)
|
||||||
'';
|
'';
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
moveToOutput "share/doc" "$devdoc"
|
moveToOutput "share/doc" "$devdoc"
|
||||||
|
|
Loading…
Reference in a new issue