about summary refs log tree commit diff
path: root/pkgs/applications/office/gnucash
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-11-18 15:25:52 +0100
committerPeter Simons <simons@cryp.to>2015-11-18 15:25:52 +0100
commitc8a8146fb4a13f71709e93537af4934d380e7141 (patch)
treeb0b70ec22df85bb84e10c9124f91f0ab9ab602b8 /pkgs/applications/office/gnucash
parentd7e6a46770bda9be5cc1863aac04004362a7ff06 (diff)
gnucash-2.4.15: disable test suite
The test suite was broken by the GLib 2.46.0 update. If anyone finds a
patch that remedies these issues for 2.4.x, please check it in!
Otherwise, we'll eventually update our default version to 2.6.x, I
suppose.

Closes https://github.com/NixOS/nixpkgs/issues/11084.
Diffstat (limited to 'pkgs/applications/office/gnucash')
-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 3f3bedb546d6c..ead347e483ffc 100644
--- a/pkgs/applications/office/gnucash/default.nix
+++ b/pkgs/applications/office/gnucash/default.nix
@@ -54,7 +54,8 @@ 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";
   preCheck = "export GNC_DOT_DIR=$PWD/dot-gnucash";
-  doCheck = true;
+
+  doCheck = false;      # https://github.com/NixOS/nixpkgs/issues/11084
 
   enableParallelBuilding = true;