paraview: 5.6.0 -> 5.6.3

* Use qt wrapper, otherwise it wouldn't find plugins and fail to start
This commit is contained in:
Daniel Schaefer 2019-11-06 11:46:33 +01:00
parent b69a51a08b
commit 4390b5ef7c

View File

@ -2,11 +2,12 @@
stdenv, fetchFromGitHub, cmake, makeWrapper
,qtbase, qttools, python, libGLU_combined
,libXt, qtx11extras, qtxmlpatterns
, mkDerivation
}:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "paraview";
version = "5.6.0";
version = "5.6.3";
# fetching from GitHub instead of taking an "official" source
# tarball because of missing submodules there
@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
owner = "Kitware";
repo = "ParaView";
rev = "v${version}";
sha256 = "1j13yfdgcv4yzfr449i4c8r4rs1c9zr6qd3igr4vv3ani8zixkzi";
sha256 = "0zcij59pg47c45gfddnpbin13w16smzhcbivzm1k4pg4366wxq1q";
fetchSubmodules = true;
};