···67stdenv.mkDerivation rec {
8 name = "paraview-${version}";
9- version = "5.4.1";
1011 # fetching from GitHub instead of taking an "official" source
12 # tarball because of missing submodules there
···14 owner = "Kitware";
15 repo = "ParaView";
16 rev = "v${version}";
17- sha256 = "1ma02sdkz2apxnwcsyvxb26ibwnjh60p71gicw6nlp042acs6v74";
18 fetchSubmodules = true;
19 };
20···22 "-DPARAVIEW_ENABLE_PYTHON=ON"
23 "-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON"
24 "-DPARAVIEW_ENABLE_EMBEDDED_DOCUMENTATION=OFF"
025 ];
2627 # During build, binaries are called that rely on freshly built
28 # libraries. These reside in build/lib, and are not found by
29 # default.
30 preBuild = ''
31- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
32 '';
3334 enableParallelBuilding = true;
···67stdenv.mkDerivation rec {
8 name = "paraview-${version}";
9+ version = "5.5.2";
1011 # fetching from GitHub instead of taking an "official" source
12 # tarball because of missing submodules there
···14 owner = "Kitware";
15 repo = "ParaView";
16 rev = "v${version}";
17+ sha256 = "1jivph7lppnflmjsiirhgv0mnh8mxx41i1vzkk78ynn00rzacx3j";
18 fetchSubmodules = true;
19 };
20···22 "-DPARAVIEW_ENABLE_PYTHON=ON"
23 "-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON"
24 "-DPARAVIEW_ENABLE_EMBEDDED_DOCUMENTATION=OFF"
25+ "-DOpenGL_GL_PREFERENCE=GLVND"
26 ];
2728 # During build, binaries are called that rely on freshly built
29 # libraries. These reside in build/lib, and are not found by
30 # default.
31 preBuild = ''
32+ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib:$PWD/VTK/ThirdParty/vtkm/vtk-m/lib
33 '';
3435 enableParallelBuilding = true;