Skip to content

Commit

Permalink
ParaView: 4.0.1 -> 5.4.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 274333e)
  • Loading branch information
timor authored and Mic92 committed Sep 22, 2017
1 parent e6ca475 commit ee06b11
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 30 deletions.
64 changes: 35 additions & 29 deletions pkgs/applications/graphics/paraview/default.nix
@@ -1,40 +1,46 @@
{ fetchurl, stdenv, cmake, qt4
, hdf5
, mpich2
, python
, libxml2
, mesa, libXt
}:
{stdenv, fetchFromGitHub, cmake
,full, python, mesa, libXt }:

stdenv.mkDerivation rec {
name = "paraview-4.0.1";
src = fetchurl {
url = "http://paraview.org/files/v4.0/ParaView-v4.0.1-source.tgz";
sha256 = "1qj8dq8gqpsw75sv4sdc7xm1xcpv0ilsddnrcfhha0zfhp0gq10y";
name = "paraview-${version}";
version = "5.4.0";

# fetching from GitHub instead of taking an "official" source
# tarball because of missing submodules there
src = fetchFromGitHub {
owner = "Kitware";
repo = "ParaView";
rev = "v${version}";
sha256 = "0h1vkgwm10mc5mnr3djp81lxr5pi0hyj776z77hiib6xm5596q9n";
fetchSubmodules = true;
};

# [ 5%] Generating vtkGLSLShaderLibrary.h
# ../../../bin/ProcessShader: error while loading shared libraries: libvtksys.so.pv3.10: cannot open shared object file: No such file or directory
preConfigure = ''
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/paraview-3.98 -rpath ../../../../../../lib -rpath ../../../../../lib -rpath ../../../../lib -rpath ../../../lib -rpath ../../lib -rpath ../lib"
cmakeFlags = [
"-DPARAVIEW_ENABLE_PYTHON=ON"
"-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON"
];

# During build, binaries are called that rely on freshly built
# libraries. These reside in build/lib, and are not found by
# default.
preBuild = ''
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
'';
cmakeFlags = [
"-DPARAVIEW_USE_SYSTEM_HDF5:BOOL=ON"
"-DVTK_USE_SYSTEM_LIBXML2:BOOL=ON"
"-DPARAVIEW_ENABLE_PYTHON:BOOL=ON"
# use -DPARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES:BOOL=OFF \ to fix make install error: http://www.cmake.org/pipermail/paraview/2011-February/020268.html
"-DPARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES:BOOL=OFF"
"-DCMAKE_SKIP_BUILD_RPATH=ON"
"-DVTK_USE_RPATH:BOOL=ON"
"-DPARAVIEW_INSTALL_DEVELOPMENT=ON"
];

# https://bugzilla.redhat.com/show_bug.cgi?id=1138466
NIX_CFLAGS_COMPILE = "-DGLX_GLXEXT_LEGACY";

enableParallelBuilding = true;

buildInputs = [ cmake qt4 hdf5 mpich2 python libxml2 mesa libXt ];
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
];


meta = {
homepage = http://www.paraview.org/;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -15665,7 +15665,7 @@ with pkgs;

pavucontrol = callPackage ../applications/audio/pavucontrol { };

paraview = callPackage ../applications/graphics/paraview { };
paraview = libsForQt5.callPackage ../applications/graphics/paraview { };

packet = callPackage ../development/tools/packet { };

Expand Down

0 comments on commit ee06b11

Please sign in to comment.