summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-07-10 13:34:51 +0000
committerPeter Simons <simons@cryp.to>2011-07-10 13:34:51 +0000
commit5fd662e2e936b6bee49815971bb6fbcab39be06c (patch)
treef5a4eb8e865f2c461712b6774c1429a18b4a6f73 /pkgs/applications
parentd21e981e64dd6836e08cee94c6c423261dc09995 (diff)
downloadnixpkgs-5fd662e2e936b6bee49815971bb6fbcab39be06c.tar
nixpkgs-5fd662e2e936b6bee49815971bb6fbcab39be06c.tar.gz
nixpkgs-5fd662e2e936b6bee49815971bb6fbcab39be06c.tar.bz2
nixpkgs-5fd662e2e936b6bee49815971bb6fbcab39be06c.tar.lz
nixpkgs-5fd662e2e936b6bee49815971bb6fbcab39be06c.tar.xz
nixpkgs-5fd662e2e936b6bee49815971bb6fbcab39be06c.tar.zst
nixpkgs-5fd662e2e936b6bee49815971bb6fbcab39be06c.zip
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
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/gnucash/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix
index 52687e1cced..9a25b51f8f0 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
   '';