summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix
index c9f14f69..db56800f 100644
--- a/default.nix
+++ b/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, cmake, boost, gmp, mpfr, libedit, python, texinfo }:
+{ stdenv, fetchgit, cmake, ninja, boost, gmp, mpfr, libedit, python, texinfo }:
stdenv.mkDerivation {
name = "ledger-3.0.1";
@@ -6,7 +6,7 @@ stdenv.mkDerivation {
src = ./.;
- buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
+ buildInputs = [ cmake ninja boost gmp mpfr libedit python texinfo ];
# Tests on Darwin are failing
doCheck = !stdenv.isDarwin;