summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2020-05-10 16:21:26 -0400
committerBen Darwin <bcdarwin@gmail.com>2020-05-11 17:54:29 -0400
commit5e716bf469f616c34db40aa81d9b9c95e7aa22e5 (patch)
treefdad056772897e57c3da67b936e55f3992a25159 /pkgs/applications/science
parent24fcef1b9eca0861d4575f649306429ae3279412 (diff)
downloadnixpkgs-5e716bf469f616c34db40aa81d9b9c95e7aa22e5.tar
nixpkgs-5e716bf469f616c34db40aa81d9b9c95e7aa22e5.tar.gz
nixpkgs-5e716bf469f616c34db40aa81d9b9c95e7aa22e5.tar.bz2
nixpkgs-5e716bf469f616c34db40aa81d9b9c95e7aa22e5.tar.lz
nixpkgs-5e716bf469f616c34db40aa81d9b9c95e7aa22e5.tar.xz
nixpkgs-5e716bf469f616c34db40aa81d9b9c95e7aa22e5.tar.zst
nixpkgs-5e716bf469f616c34db40aa81d9b9c95e7aa22e5.zip
vtk: 7.1.1 -> 8.2.0
- also create vtk_7 as several packages don't build with 8.x:
  - itk5: vtkVersion.h header not found at compile time
  - ants: version in tree (2.2.0) is incompatible with 8.2
  - itk4: ants depends on both vtk and itk4, so use vtk_7
  - gdcm: vtk header issue
  - python3Packages.vtk: Python C API compilation error with Python 3.8

- upgrade vtkWithQt4 -> vtkWithQt5
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/biology/ants/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/biology/ants/default.nix b/pkgs/applications/science/biology/ants/default.nix
index 20eedfaaa16..cb88e92fe1c 100644
--- a/pkgs/applications/science/biology/ants/default.nix
+++ b/pkgs/applications/science/biology/ants/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, fetchpatch, cmake, makeWrapper, itk4, vtk }:
+{ stdenv, fetchFromGitHub, fetchpatch, cmake, makeWrapper, itk4, vtk_7 }:
 
 stdenv.mkDerivation rec {
   pname    = "ANTs";
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
   ];
 
   nativeBuildInputs = [ cmake makeWrapper ];
-  buildInputs = [ itk4 vtk ];
+  buildInputs = [ itk4 vtk_7 ];
 
   cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE" ];