summary refs log tree commit diff
path: root/pkgs/applications/graphics/paraview
diff options
context:
space:
mode:
authorBastian Köcher <git@kchr.de>2017-12-01 13:20:15 +0100
committerBastian Köcher <git@kchr.de>2017-12-01 13:20:15 +0100
commitcef755a8439b2c9f518725d2dcba73f2cae58123 (patch)
treeab72e80957853aa4130f8fcf53208b829b1946c2 /pkgs/applications/graphics/paraview
parentd7fb70918041028845740f3a89d8b2694645bfc0 (diff)
downloadnixpkgs-cef755a8439b2c9f518725d2dcba73f2cae58123.tar
nixpkgs-cef755a8439b2c9f518725d2dcba73f2cae58123.tar.gz
nixpkgs-cef755a8439b2c9f518725d2dcba73f2cae58123.tar.bz2
nixpkgs-cef755a8439b2c9f518725d2dcba73f2cae58123.tar.lz
nixpkgs-cef755a8439b2c9f518725d2dcba73f2cae58123.tar.xz
nixpkgs-cef755a8439b2c9f518725d2dcba73f2cae58123.tar.zst
nixpkgs-cef755a8439b2c9f518725d2dcba73f2cae58123.zip
paraview: 5.4.0 -> 5.4.1
Diffstat (limited to 'pkgs/applications/graphics/paraview')
-rw-r--r--pkgs/applications/graphics/paraview/default.nix33
1 files changed, 18 insertions, 15 deletions
diff --git a/pkgs/applications/graphics/paraview/default.nix b/pkgs/applications/graphics/paraview/default.nix
index 730f809eef4..9c5fe928f23 100644
--- a/pkgs/applications/graphics/paraview/default.nix
+++ b/pkgs/applications/graphics/paraview/default.nix
@@ -1,9 +1,12 @@
-{stdenv, fetchFromGitHub, cmake
-,full, python, mesa, libXt }:
+{
+stdenv, fetchFromGitHub, cmake
+,qtbase, qttools, python, mesa
+,libXt, qtx11extras, qtxmlpatterns 
+}:
 
 stdenv.mkDerivation rec {
   name = "paraview-${version}";
-  version = "5.4.0";
+  version = "5.4.1";
 
   # fetching from GitHub instead of taking an "official" source
   # tarball because of missing submodules there
@@ -11,13 +14,14 @@ stdenv.mkDerivation rec {
     owner = "Kitware";
     repo = "ParaView";
     rev = "v${version}";
-    sha256 = "0h1vkgwm10mc5mnr3djp81lxr5pi0hyj776z77hiib6xm5596q9n";
+    sha256 = "1ma02sdkz2apxnwcsyvxb26ibwnjh60p71gicw6nlp042acs6v74";
     fetchSubmodules = true;
   };
 
    cmakeFlags = [
      "-DPARAVIEW_ENABLE_PYTHON=ON"
      "-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON"
+     "-DPARAVIEW_ENABLE_EMBEDDED_DOCUMENTATION=OFF"
    ];
 
   # During build, binaries are called that rely on freshly built
@@ -29,17 +33,16 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  buildInputs = [ cmake
-   python
-   mesa
-   libXt
-
-   # theoretically the following should be fine, but there is an error
-   # due to missing libqminimal when not using qt5.full
-
-   # qtbase qtx11extras qttools
-   full
-   ];
+  buildInputs = [ 
+    cmake
+    python
+    mesa
+    libXt
+    qtbase
+    qtx11extras
+    qttools
+    qtxmlpatterns
+  ];
 
 
   meta = {