mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
ledger: enable XML support so that ledger can read GnuCash data files
svn path=/nixpkgs/trunk/; revision=27658
This commit is contained in:
parent
80713bcc75
commit
f05fce5e6e
|
@ -16,7 +16,7 @@
|
||||||
# Fortunately, libtools builds the program with proper paths hard-coded
|
# Fortunately, libtools builds the program with proper paths hard-coded
|
||||||
# alread, so we don't need patchelf. Phew!
|
# alread, so we don't need patchelf. Phew!
|
||||||
|
|
||||||
{stdenv, fetchurl, emacs, gmp, pcre}:
|
{stdenv, fetchurl, emacs, gmp, pcre, expat}:
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "ledger-2.6.3";
|
name = "ledger-2.6.3";
|
||||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation {
|
||||||
sha256 = "05zpnypcwgck7lwk00pbdlcwa347xsqifxh4zsbbn01m98bx1v5k";
|
sha256 = "05zpnypcwgck7lwk00pbdlcwa347xsqifxh4zsbbn01m98bx1v5k";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ emacs gmp pcre ];
|
buildInputs = [ emacs gmp pcre expat ];
|
||||||
|
|
||||||
configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3";
|
configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3";
|
||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
|
|
Loading…
Reference in a new issue