mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
MyPaint, fix impurity: add hicolor_icon_theme wrapper to ensure MyPaint can start
MyPaint fails to find its own icons and refuses to start if another icon theme is not available on the system. Running gtk-update-icon-cache on MyPaint's share/icons/hicolor folder did not help, and setting the XDG_DATA_DIRS to point to MyPaint's icons also didn't work. https://gna.org/bugs/?18460 Thanks to Kim Simmons for reporting this and helping to debug.
This commit is contained in:
parent
4f199ef7bb
commit
18685b7d44
@ -1,5 +1,6 @@
|
||||
{ stdenv, fetchurl, gettext, glib, gtk, json_c, lcms2, libpng
|
||||
, makeWrapper, pkgconfig, pygtk, python, pythonPackages, scons, swig
|
||||
{ stdenv, fetchurl, gettext, glib, gtk, hicolor_icon_theme, json_c
|
||||
, lcms2, libpng , makeWrapper, pkgconfig, pygtk, python, pythonPackages
|
||||
, scons, swig
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -16,14 +17,16 @@ stdenv.mkDerivation rec {
|
||||
python scons swig
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ pythonPackages.numpy ];
|
||||
propagatedBuildInputs = [ hicolor_icon_theme pythonPackages.numpy ];
|
||||
|
||||
buildPhase = "scons prefix=$out";
|
||||
|
||||
installPhase = ''
|
||||
scons prefix=$out install
|
||||
sed -i -e 's|/usr/bin/env python2.7|${python}/bin/python|' $out/bin/mypaint
|
||||
wrapProgram $out/bin/mypaint --prefix PYTHONPATH : $PYTHONPATH
|
||||
wrapProgram $out/bin/mypaint \
|
||||
--prefix PYTHONPATH : $PYTHONPATH \
|
||||
--prefix XDG_DATA_DIRS ":" "${hicolor_icon_theme}/share"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user