summary refs log tree commit diff
path: root/pkgs/applications/graphics/paraview
diff options
context:
space:
mode:
authorDaniel Schaefer <git@danielschaefer.me>2019-11-06 11:46:33 +0100
committerDaniel Schaefer <git@danielschaefer.me>2019-11-06 13:24:35 +0100
commit4390b5ef7c64cd31e6233c162d6ca331e0831352 (patch)
tree0bb3ff3ac413998675e0d5717bb14e679575a38a /pkgs/applications/graphics/paraview
parentb69a51a08bc3a5e84d89fbe79d033049fb66ab4e (diff)
downloadnixpkgs-4390b5ef7c64cd31e6233c162d6ca331e0831352.tar
nixpkgs-4390b5ef7c64cd31e6233c162d6ca331e0831352.tar.gz
nixpkgs-4390b5ef7c64cd31e6233c162d6ca331e0831352.tar.bz2
nixpkgs-4390b5ef7c64cd31e6233c162d6ca331e0831352.tar.lz
nixpkgs-4390b5ef7c64cd31e6233c162d6ca331e0831352.tar.xz
nixpkgs-4390b5ef7c64cd31e6233c162d6ca331e0831352.tar.zst
nixpkgs-4390b5ef7c64cd31e6233c162d6ca331e0831352.zip
paraview: 5.6.0 -> 5.6.3
* Use qt wrapper, otherwise it wouldn't find plugins and fail to start
Diffstat (limited to 'pkgs/applications/graphics/paraview')
-rw-r--r--pkgs/applications/graphics/paraview/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/paraview/default.nix b/pkgs/applications/graphics/paraview/default.nix
index 13a00991265..fdda8062a43 100644
--- a/pkgs/applications/graphics/paraview/default.nix
+++ b/pkgs/applications/graphics/paraview/default.nix
@@ -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;
   };