about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-04-17 21:47:15 -0500
committerJohn Wiegley <johnw@newartisans.com>2014-04-17 21:47:15 -0500
commit5c18bbe34fca3c6e38b06017780973e2c30cdd85 (patch)
tree087d7e8c94c6990ddcb30905675433d97181cd90
parenta2a398fbda842594ab17d0b98f68dba4c51e49e8 (diff)
downloadnixlib-5c18bbe34fca3c6e38b06017780973e2c30cdd85.tar
nixlib-5c18bbe34fca3c6e38b06017780973e2c30cdd85.tar.gz
nixlib-5c18bbe34fca3c6e38b06017780973e2c30cdd85.tar.bz2
nixlib-5c18bbe34fca3c6e38b06017780973e2c30cdd85.tar.lz
nixlib-5c18bbe34fca3c6e38b06017780973e2c30cdd85.tar.xz
nixlib-5c18bbe34fca3c6e38b06017780973e2c30cdd85.tar.zst
nixlib-5c18bbe34fca3c6e38b06017780973e2c30cdd85.zip
Update ledger expression, add myself as a maintainer
-rw-r--r--lib/maintainers.nix1
-rw-r--r--pkgs/applications/office/ledger/3.0.nix18
2 files changed, 10 insertions, 9 deletions
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index 34896dfaeac1..78355eff0045 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -39,6 +39,7 @@
   iElectric = "Domen Kozar <domen@dev.si>";
   iyzsong = "Song Wenwu <iyzsong@gmail.com>";
   jcumming = "Jack Cummings <jack@mudshark.org>";
+  jwiegley = "John Wiegley <johnw@newartisans.com>";
   kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
   ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
   lethalman = "Luca Bruno <lucabru@src.gnome.org>";
diff --git a/pkgs/applications/office/ledger/3.0.nix b/pkgs/applications/office/ledger/3.0.nix
index 1afa3a979e37..44cf87b7929c 100644
--- a/pkgs/applications/office/ledger/3.0.nix
+++ b/pkgs/applications/office/ledger/3.0.nix
@@ -1,21 +1,21 @@
-{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
+{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python
+, texinfo, gnused }:
 
 let
-  rev = "3b5f496536";
+  rev = "a0c5addbbd";
 in
+
 stdenv.mkDerivation {
-  name = "ledger3-2013.12.${rev}";
+  name = "ledger-3.0.2.${rev}";
 
   src = fetchgit {
-    url = "https://github.com/ledger/ledger.git";
+    url = "git://github.com/ledger/ledger.git";
     inherit rev;
-    sha256 = "0r36zsdsyy6aylfcwyqra4796y4abi3b27wv5fvk3g2bmyzqzx4j";
+    sha256 = "1yr4i8gpby67j4vl7xk109dwb14z8a424nwgva8rbms8115w4ps5";
   };
 
-  buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
+  buildInputs = [ cmake boost gmp mpfr libedit python texinfo gnused ];
 
-  # Tests on Darwin are failing
-  doCheck = !stdenv.isDarwin;
   enableParallelBuilding = true;
 
   # Skip byte-compiling of emacs-lisp files because this is currently
@@ -38,6 +38,6 @@ stdenv.mkDerivation {
     '';
 
     platforms = stdenv.lib.platforms.all;
-    maintainers = with stdenv.lib.maintainers; [ simons the-kenny ];
+    maintainers = with stdenv.lib.maintainers; [ simons the-kenny jwiegley ];
   };
 }