From 5fd662e2e936b6bee49815971bb6fbcab39be06c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 10 Jul 2011 13:34:51 +0000 Subject: [PATCH] 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 --- pkgs/applications/office/gnucash/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix index 52687e1cced6..9a25b51f8f0c 100644 --- a/pkgs/applications/office/gnucash/default.nix +++ b/pkgs/applications/office/gnucash/default.nix @@ -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 '';