summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-16 20:35:26 +0100
committerPeter Simons <simons@cryp.to>2014-01-16 20:35:26 +0100
commit4664108f8ed10ab03ce9ca7c63733a33f73613c1 (patch)
treee911e3871e261147f8c7ab21195c9b29a95281de /pkgs
parenta39490d709ec8f09b04f91530219c343ce041412 (diff)
downloadnixlib-4664108f8ed10ab03ce9ca7c63733a33f73613c1.tar
nixlib-4664108f8ed10ab03ce9ca7c63733a33f73613c1.tar.gz
nixlib-4664108f8ed10ab03ce9ca7c63733a33f73613c1.tar.bz2
nixlib-4664108f8ed10ab03ce9ca7c63733a33f73613c1.tar.lz
nixlib-4664108f8ed10ab03ce9ca7c63733a33f73613c1.tar.xz
nixlib-4664108f8ed10ab03ce9ca7c63733a33f73613c1.tar.zst
nixlib-4664108f8ed10ab03ce9ca7c63733a33f73613c1.zip
gnucash: revert update from 2.4.15 to 2.6.0
The 2.6.0 version doesn't compile, and the error doesn't seem to be easy to fix.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/office/gnucash/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix
index 5f77b8966145..c8ebe6e2b12c 100644
--- a/pkgs/applications/office/gnucash/default.nix
+++ b/pkgs/applications/office/gnucash/default.nix
@@ -1,7 +1,7 @@
 { fetchurl, stdenv, pkgconfig, libxml2, gconf, glib, gtk, libgnomeui, libofx
 , libgtkhtml, gtkhtml, libgnomeprint, goffice, enchant, gettext, libbonoboui
 , intltool, perl, guile, slibGuile, swig, isocodes, bzip2, makeWrapper, libglade
-, libgsf, libart_lgpl, perlPackages, libxslt, webkit
+, libgsf, libart_lgpl, perlPackages
 }:
 
 /* If you experience GConf errors when running GnuCash on NixOS, see
@@ -10,18 +10,18 @@
  */
 
 stdenv.mkDerivation rec {
-  name = "gnucash-2.6.0";
+  name = "gnucash-2.4.15";
 
   src = fetchurl {
     url = "mirror://sourceforge/gnucash/${name}.tar.bz2";
-    sha256 = "1gzzk9dndb5c2rxi8yf5dsaair47axwz4nxx87y80wryxvqanxd8";
+    sha256 = "058mgfwic6a2g7jq6iip5hv45md1qaxy25dj4lvlzjjr141wm4gx";
   };
 
   buildInputs = [
     pkgconfig libxml2 gconf glib gtk libgnomeui libgtkhtml gtkhtml
     libgnomeprint goffice enchant gettext intltool perl guile slibGuile
     swig isocodes bzip2 makeWrapper libofx libglade libgsf libart_lgpl
-    perlPackages.DateManip perlPackages.FinanceQuote libxslt webkit
+    perlPackages.DateManip perlPackages.FinanceQuote
   ];
 
   configureFlags = "CFLAGS=-O3 CXXFLAGS=-O3 --disable-dbi --enable-ofx";