Update ledger expression, add myself as a maintainer
This commit is contained in:
parent
a2a398fbda
commit
5c18bbe34f
@ -39,6 +39,7 @@
|
|||||||
iElectric = "Domen Kozar <domen@dev.si>";
|
iElectric = "Domen Kozar <domen@dev.si>";
|
||||||
iyzsong = "Song Wenwu <iyzsong@gmail.com>";
|
iyzsong = "Song Wenwu <iyzsong@gmail.com>";
|
||||||
jcumming = "Jack Cummings <jack@mudshark.org>";
|
jcumming = "Jack Cummings <jack@mudshark.org>";
|
||||||
|
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
||||||
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
||||||
ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
|
ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
|
||||||
lethalman = "Luca Bruno <lucabru@src.gnome.org>";
|
lethalman = "Luca Bruno <lucabru@src.gnome.org>";
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
|
{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python
|
||||||
|
, texinfo, gnused }:
|
||||||
|
|
||||||
let
|
let
|
||||||
rev = "3b5f496536";
|
rev = "a0c5addbbd";
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ledger3-2013.12.${rev}";
|
name = "ledger-3.0.2.${rev}";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/ledger/ledger.git";
|
url = "git://github.com/ledger/ledger.git";
|
||||||
inherit rev;
|
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;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
# Skip byte-compiling of emacs-lisp files because this is currently
|
# Skip byte-compiling of emacs-lisp files because this is currently
|
||||||
@ -38,6 +38,6 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
maintainers = with stdenv.lib.maintainers; [ simons the-kenny ];
|
maintainers = with stdenv.lib.maintainers; [ simons the-kenny jwiegley ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user