Update ledger expression, add myself as a maintainer

This commit is contained in:
John Wiegley 2014-04-17 21:47:15 -05:00
parent a2a398fbda
commit 5c18bbe34f
2 changed files with 10 additions and 9 deletions

View file

@ -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>";

View file

@ -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 ];
};
}