about summary refs log tree commit diff
path: root/pkgs/applications/science/biology/ants
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-02-21 20:51:58 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2019-03-11 10:11:28 -0400
commit6ed49262f50691b77919fd867a5d142e407caf14 (patch)
tree3be45c099de6d744444548e08f18f31503aba0f7 /pkgs/applications/science/biology/ants
parent91f0c848f4961ae8d0e50039fb712dd4ae6a02b7 (diff)
treewide: remove BUILD_TESTING flag
This is now set by CMake
Diffstat (limited to 'pkgs/applications/science/biology/ants')
-rw-r--r--pkgs/applications/science/biology/ants/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/science/biology/ants/default.nix b/pkgs/applications/science/biology/ants/default.nix
index f54bd9af02882..d1a990a5eb282 100644
--- a/pkgs/applications/science/biology/ants/default.nix
+++ b/pkgs/applications/science/biology/ants/default.nix
@@ -15,9 +15,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake makeWrapper ];
   buildInputs = [ itk vtk ];
 
-  cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE"
-                 # as cmake otherwise tries to download test data:
-                 "-DBUILD_TESTING=FALSE" ];
+  cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE" ];
 
   enableParallelBuilding = true;