summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-23 04:34:13 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-23 04:54:51 +0300
commitd801e8a01185d06ec766a88db6dfbe01fd5b82e8 (patch)
tree7f5a0b0000904ef9c0358a13a0cde541f826049e /pkgs/applications/office
parentfffd8f192e5089205c09a6d48364d1e1ee244ade (diff)
downloadnixlib-d801e8a01185d06ec766a88db6dfbe01fd5b82e8.tar
nixlib-d801e8a01185d06ec766a88db6dfbe01fd5b82e8.tar.gz
nixlib-d801e8a01185d06ec766a88db6dfbe01fd5b82e8.tar.bz2
nixlib-d801e8a01185d06ec766a88db6dfbe01fd5b82e8.tar.lz
nixlib-d801e8a01185d06ec766a88db6dfbe01fd5b82e8.tar.xz
nixlib-d801e8a01185d06ec766a88db6dfbe01fd5b82e8.tar.zst
nixlib-d801e8a01185d06ec766a88db6dfbe01fd5b82e8.zip
treewide: Fix output references to glib
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/gnucash/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix
index 2a3ff4320e6b..7ef77dc2562d 100644
--- a/pkgs/applications/office/gnucash/default.nix
+++ b/pkgs/applications/office/gnucash/default.nix
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
   '';
 
   # The following settings fix failures in the test suite. It's not required otherwise.
-  NIX_LDFLAGS = "-rpath=${guile}/lib -rpath=${glib}/lib";
+  NIX_LDFLAGS = "-rpath=${guile}/lib -rpath=${glib.out}/lib";
   preCheck = "export GNC_DOT_DIR=$PWD/dot-gnucash";
 
   doCheck = false;      # https://github.com/NixOS/nixpkgs/issues/11084