about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2013-09-01 14:23:56 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2013-09-01 14:23:56 +0200
commit06f80c77e28a04416846badef28d17d8dafc3193 (patch)
treed001008a10c247b74987e91515c28c62a6baab26 /pkgs/applications/office
parent670be4c4bc52b6d203c6b9bd1a0c967292153600 (diff)
Update ledger3 to latest HEAD.
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/ledger/3.0.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/applications/office/ledger/3.0.nix b/pkgs/applications/office/ledger/3.0.nix
index b51fd6fe41e27..a40a60650f4c9 100644
--- a/pkgs/applications/office/ledger/3.0.nix
+++ b/pkgs/applications/office/ledger/3.0.nix
@@ -1,23 +1,20 @@
 { stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
 
 let
-  rev = "26d7197";
+  rev = "0ec4291013bae966df2f5ca504d2216e488cd7ec";
 in
 stdenv.mkDerivation {
-  name = "ledger3-2013.06.${rev}";
+  name = "ledger3-2013.08.${rev}";
 
   src = fetchgit {
     url = "https://github.com/ledger/ledger.git";
     inherit rev;
-    sha256 = "02nf4kdrd61q9rf5rrarwmx47y2ya5qix7n82cj9qi9p4v3k3m2g";
+    sha256 = "1y4rcbx8y2fxkdc7i06n1i5jf3cq05bvzpb8498mis2gwfmkw470";
   };
 
   buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
 
-  # Unit tests fail in the current git snapshot. Try enabling them again
-  # when updating this package!
-  doCheck = false;
-
+  doCheck = true;
   enableParallelBuilding = true;
 
   meta = {