vtkWithQt4: actually build QVTK libs/headers (#84772)

- VTK_USE_QT is obsolete and didn't have the intended effect

authored by Ben Darwin and committed by GitHub 948b3830 babf5477

+2 -2
+2 -2
pkgs/development/libraries/vtk/default.nix
··· 52 # At least, we use -fPIC for other packages to be able to use this in shared 53 # objects. 54 cmakeFlags = [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" "-DVTK_USE_SYSTEM_TIFF=1" "-DOPENGL_INCLUDE_DIR=${libGL}/include" ] 55 - ++ optional (qtLib != null) [ "-DVTK_USE_QT:BOOL=ON" ] 56 ++ optional stdenv.isDarwin [ "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks" ] 57 ++ optional enablePython [ "-DVTK_WRAP_PYTHON:BOOL=ON" ]; 58 ··· 66 67 meta = { 68 description = "Open source libraries for 3D computer graphics, image processing and visualization"; 69 - homepage = "http://www.vtk.org/"; 70 license = stdenv.lib.licenses.bsd3; 71 maintainers = with stdenv.lib.maintainers; [ knedlsepp ]; 72 platforms = with stdenv.lib.platforms; unix;
··· 52 # At least, we use -fPIC for other packages to be able to use this in shared 53 # objects. 54 cmakeFlags = [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" "-DVTK_USE_SYSTEM_TIFF=1" "-DOPENGL_INCLUDE_DIR=${libGL}/include" ] 55 + ++ optional (qtLib != null) [ "-DVTK_Group_Qt:BOOL=ON" ] 56 ++ optional stdenv.isDarwin [ "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks" ] 57 ++ optional enablePython [ "-DVTK_WRAP_PYTHON:BOOL=ON" ]; 58 ··· 66 67 meta = { 68 description = "Open source libraries for 3D computer graphics, image processing and visualization"; 69 + homepage = "https://www.vtk.org/"; 70 license = stdenv.lib.licenses.bsd3; 71 maintainers = with stdenv.lib.maintainers; [ knedlsepp ]; 72 platforms = with stdenv.lib.platforms; unix;