summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-07-09 13:02:46 +0000
committerPeter Simons <simons@cryp.to>2011-07-09 13:02:46 +0000
commitf903153fe619dadea5b0a0506a5609c710f9d0a6 (patch)
treeddfcb2a8d588f99c225fcd2c49c25a661d7a2196 /pkgs/applications
parent483eb4948b2ef52940a51ee1ee8304352b3ecd14 (diff)
downloadnixpkgs-f903153fe619dadea5b0a0506a5609c710f9d0a6.tar
nixpkgs-f903153fe619dadea5b0a0506a5609c710f9d0a6.tar.gz
nixpkgs-f903153fe619dadea5b0a0506a5609c710f9d0a6.tar.bz2
nixpkgs-f903153fe619dadea5b0a0506a5609c710f9d0a6.tar.lz
nixpkgs-f903153fe619dadea5b0a0506a5609c710f9d0a6.tar.xz
nixpkgs-f903153fe619dadea5b0a0506a5609c710f9d0a6.tar.zst
nixpkgs-f903153fe619dadea5b0a0506a5609c710f9d0a6.zip
gnucash: updated to version 2.4.7
The test suite is currently disabled. There is an issue with GUILE_LOAD_PATH
that needs to be addressed before we can re-enable those tests. See comments in
the expression for further details.

svn path=/nixpkgs/trunk/; revision=27686
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/gnucash/default.nix33
1 files changed, 28 insertions, 5 deletions
diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix
index e1d86db16f6..52687e1cced 100644
--- a/pkgs/applications/office/gnucash/default.nix
+++ b/pkgs/applications/office/gnucash/default.nix
@@ -3,12 +3,15 @@
 , gettext, intltool, perl, guile, slibGuile, swig, isocodes, bzip2
 , makeWrapper }:
 
-stdenv.mkDerivation rec {
-  name = "gnucash-2.2.9";
+let
+  name = "gnucash-2.4.7";
+in
+stdenv.mkDerivation {
+  inherit name;
 
   src = fetchurl {
-    url = "http://ftp.at.gnucash.org/pub/gnucash/gnucash/sources/stable/${name}.tar.bz2";
-    sha256 = "0sj83mmshx50122n1i3y782p4b54k37n7sb4vldmqmhwww32925i";
+    url = "mirror://sourceforge/gnucash/${name}.tar.bz2";
+    sha256 = "eeb3b17f9081a544f8705db735df88ab3f468642a1d01552ea4e36bcb5b0730e";
   };
 
   buildInputs = [
@@ -17,11 +20,24 @@ stdenv.mkDerivation rec {
     gettext intltool perl guile slibGuile swig isocodes bzip2 makeWrapper
   ];
 
+  /* The test suite isn't enabled at the moment, so this setting
+     shouldn't be necessary.
+
   preConfigure = ''
     # The `.gnucash' directory, used by the test suite.
     export GNC_DOT_DIR="$PWD/dot-gnucash"
     echo "\$GNC_DOT_DIR set to \`$GNC_DOT_DIR'"
   '';
+   */
+
+  configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O2 CXXFLAGS=-O2 --disable-dbi";
+  /* More flags to figure out:
+
+       --enable-gtkmm            enable gtkmm gui
+       --enable-ofx              compile with ofx support (needs LibOFX)
+       --enable-aqbanking        compile with AqBanking support
+       --enable-python-bindings  enable python bindings
+   */
 
   postInstall = ''
     for prog in "$out/bin/"*
@@ -32,7 +48,14 @@ stdenv.mkDerivation rec {
     done
   '';
 
-  doCheck = true;
+  doCheck = false;
+  /* The test suite fails as follows:
+
+       /tmp/nix-build-y1mba6vkkscggnfigji57mwd0zhvnx1w-gnucash-2.4.7.drv-0/gnucash-2.4.7/src/import-export/test/.libs/lt-test-import-parse: error while loading shared libraries: libguile.so.17: cannot open shared object file: No such file or directory
+
+  */
+
+  enableParallelBuilding = true;
 
   meta = {
     description = "GnuCash, a personal and small-business financial-accounting application";