gnucash: add ${gconf}/bin to $PATH in wrapper scripts

GnuCash attempt to call gconf binaries to register its schemas in the
system-wide database. That still doesn't work, of course, because gconf
can't update its store path. TODO. :-(

svn path=/nixpkgs/trunk/; revision=27688
This commit is contained in:
Peter Simons 2011-07-10 13:34:51 +00:00
parent d21e981e64
commit 5fd662e2e9

View file

@ -44,7 +44,8 @@ stdenv.mkDerivation {
do
wrapProgram "$prog" \
--set SCHEME_LIBRARY_PATH "$SCHEME_LIBRARY_PATH" \
--prefix GUILE_LOAD_PATH ":" "$GUILE_LOAD_PATH"
--prefix GUILE_LOAD_PATH ":" "$GUILE_LOAD_PATH" \
--prefix PATH ":" "${gconf}/bin"
done
'';