about summary refs log tree commit diff
path: root/pkgs/development/libraries/gdcm
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2023-01-24 11:48:56 -0500
committerBen Darwin <bcdarwin@gmail.com>2023-01-24 12:33:48 -0500
commit4095b8232c4fb44aefce7aef8b3f106982e2b428 (patch)
tree24b3425d5bda7f0c9a8d15c3e57c2c5f75d10830 /pkgs/development/libraries/gdcm
parentb296ddd4940973cfc2207e436ce257ee4781b9d6 (diff)
vtk, vtkWithQt5: bump from vtk_8 to vtk_9
Diffstat (limited to 'pkgs/development/libraries/gdcm')
-rw-r--r--pkgs/development/libraries/gdcm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gdcm/default.nix b/pkgs/development/libraries/gdcm/default.nix
index ecc37b7e71f73..d2182154f7118 100644
--- a/pkgs/development/libraries/gdcm/default.nix
+++ b/pkgs/development/libraries/gdcm/default.nix
@@ -3,7 +3,7 @@
 , fetchFromGitHub
 , cmake
 , enableVTK ? true
-, vtk
+, vtk_8
 , ApplicationServices
 , Cocoa
 , enablePython ? false
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake ];
 
   buildInputs = lib.optionals enableVTK [
-    vtk
+    vtk_8
   ] ++ lib.optionals stdenv.isDarwin [
     ApplicationServices
     Cocoa