about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2013-09-04 22:16:28 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-09-06 16:17:15 +0200
commitbf9b36b616e4a0901d8b5582948db10805f002a4 (patch)
treea45cef7e00ceac5ce65e3b7efc3f1ad8a501c2ca /pkgs/applications/office
parent63051ab66bc72bef15750658a0dbdecf7eec6e0c (diff)
downloadnixlib-bf9b36b616e4a0901d8b5582948db10805f002a4.tar
nixlib-bf9b36b616e4a0901d8b5582948db10805f002a4.tar.gz
nixlib-bf9b36b616e4a0901d8b5582948db10805f002a4.tar.bz2
nixlib-bf9b36b616e4a0901d8b5582948db10805f002a4.tar.lz
nixlib-bf9b36b616e4a0901d8b5582948db10805f002a4.tar.xz
nixlib-bf9b36b616e4a0901d8b5582948db10805f002a4.tar.zst
nixlib-bf9b36b616e4a0901d8b5582948db10805f002a4.zip
ledger3: Don't run tests on Darwin (they fail).
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
close #914
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/ledger/3.0.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/office/ledger/3.0.nix b/pkgs/applications/office/ledger/3.0.nix
index 6a49ede08577..8b74dbad6f8e 100644
--- a/pkgs/applications/office/ledger/3.0.nix
+++ b/pkgs/applications/office/ledger/3.0.nix
@@ -14,7 +14,8 @@ stdenv.mkDerivation {
 
   buildInputs = [ cmake boost gmp mpfr libedit python texinfo ];
 
-  doCheck = true;
+  # Tests on Darwin are failing
+  doCheck = !stdenv.isDarwin;
   enableParallelBuilding = true;
 
   # Skip byte-compiling of emacs-lisp files because this is currently
@@ -37,6 +38,6 @@ stdenv.mkDerivation {
     '';
 
     platforms = stdenv.lib.platforms.all;
-    maintainers = [ stdenv.lib.maintainers.simons ];
+    maintainers = with stdenv.lib.maintainers; [ simons the-kenny ];
   };
 }