Merge pull request #29214 from timor/paraview-5.4.0

ParaView: 4.0.1 -> 5.4.0
This commit is contained in:
Jörg Thalheim 2017-09-22 08:31:11 +01:00 committed by GitHub
commit 5b29e35c8c
2 changed files with 36 additions and 30 deletions

View File

@ -1,40 +1,46 @@
{ fetchurl, stdenv, cmake, qt4 {stdenv, fetchFromGitHub, cmake
, hdf5 ,full, python, mesa, libXt }:
, mpich2
, python
, libxml2
, mesa, libXt
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "paraview-4.0.1"; name = "paraview-${version}";
src = fetchurl { version = "5.4.0";
url = "http://paraview.org/files/v4.0/ParaView-v4.0.1-source.tgz";
sha256 = "1qj8dq8gqpsw75sv4sdc7xm1xcpv0ilsddnrcfhha0zfhp0gq10y"; # 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 cmakeFlags = [
# ../../../bin/ProcessShader: error while loading shared libraries: libvtksys.so.pv3.10: cannot open shared object file: No such file or directory "-DPARAVIEW_ENABLE_PYTHON=ON"
preConfigure = '' "-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON"
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_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 # During build, binaries are called that rely on freshly built
NIX_CFLAGS_COMPILE = "-DGLX_GLXEXT_LEGACY"; # libraries. These reside in build/lib, and are not found by
# default.
preBuild = ''
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
'';
enableParallelBuilding = true; 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 = { meta = {
homepage = http://www.paraview.org/; homepage = http://www.paraview.org/;

View File

@ -15729,7 +15729,7 @@ with pkgs;
pavucontrol = callPackage ../applications/audio/pavucontrol { }; pavucontrol = callPackage ../applications/audio/pavucontrol { };
paraview = callPackage ../applications/graphics/paraview { }; paraview = libsForQt5.callPackage ../applications/graphics/paraview { };
packet = callPackage ../development/tools/packet { }; packet = callPackage ../development/tools/packet { };