summary refs log tree commit diff
path: root/pkgs/applications/office/ledger/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-07-07 22:48:40 +0000
committerPeter Simons <simons@cryp.to>2011-07-07 22:48:40 +0000
commitf05fce5e6e08177615a7a9ce85fc82148722eb1a (patch)
treec485a632428fe139c38f3ade23d6b5f73cd039da /pkgs/applications/office/ledger/default.nix
parent80713bcc75e265f7e5cd3c04cd4c05e829ca56ab (diff)
downloadnixlib-f05fce5e6e08177615a7a9ce85fc82148722eb1a.tar
nixlib-f05fce5e6e08177615a7a9ce85fc82148722eb1a.tar.gz
nixlib-f05fce5e6e08177615a7a9ce85fc82148722eb1a.tar.bz2
nixlib-f05fce5e6e08177615a7a9ce85fc82148722eb1a.tar.lz
nixlib-f05fce5e6e08177615a7a9ce85fc82148722eb1a.tar.xz
nixlib-f05fce5e6e08177615a7a9ce85fc82148722eb1a.tar.zst
nixlib-f05fce5e6e08177615a7a9ce85fc82148722eb1a.zip
ledger: enable XML support so that ledger can read GnuCash data files
svn path=/nixpkgs/trunk/; revision=27658
Diffstat (limited to 'pkgs/applications/office/ledger/default.nix')
-rw-r--r--pkgs/applications/office/ledger/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/office/ledger/default.nix b/pkgs/applications/office/ledger/default.nix
index 010e5c48c1f4..6070087008e1 100644
--- a/pkgs/applications/office/ledger/default.nix
+++ b/pkgs/applications/office/ledger/default.nix
@@ -16,7 +16,7 @@
 # Fortunately, libtools builds the program with proper paths hard-coded
 # alread, so we don't need patchelf. Phew!
 
-{stdenv, fetchurl, emacs, gmp, pcre}:
+{stdenv, fetchurl, emacs, gmp, pcre, expat}:
 
 let
   name = "ledger-2.6.3";
@@ -29,7 +29,7 @@ stdenv.mkDerivation {
     sha256 = "05zpnypcwgck7lwk00pbdlcwa347xsqifxh4zsbbn01m98bx1v5k";
   };
 
-  buildInputs = [ emacs gmp pcre ];
+  buildInputs = [ emacs gmp pcre expat ];
 
   configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3";
   dontPatchELF = true;