forked from mirrors/nixpkgs
update paraview to 3.10.1
<patch description> Signed-off-by: David Guibert <david.guibert@gmail.com> svn path=/nixpkgs/trunk/; revision=28618
This commit is contained in:
parent
323f4a3464
commit
364a74843a
|
@ -1,20 +1,41 @@
|
|||
{ fetchurl, stdenv, cmake, qt4 }:
|
||||
{ fetchurl, stdenv, cmake, qt4
|
||||
, hdf5
|
||||
, mpich2
|
||||
, python
|
||||
, libxml2
|
||||
, mesa
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "paraview-3.8.1";
|
||||
name = "paraview-3.10.1";
|
||||
src = fetchurl {
|
||||
url = "http://www.paraview.org/files/v3.8/ParaView-3.8.1.tar.gz";
|
||||
sha256 = "0g169vc956gifkd90lcini63dkr5x3id3hkwcwxzriqamxr72r1p";
|
||||
url = "http://www.paraview.org/files/v3.10/ParaView-3.10.1.tar.gz";
|
||||
sha256 = "1z2wvywpd3rvz4jhfs3mi35hsx4yqkdim58d075jx9kg7gifwga5";
|
||||
};
|
||||
|
||||
# [ 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.8"
|
||||
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/paraview-3.10 -rpath ../../../bin -rpath ../../bin"
|
||||
'';
|
||||
cmakeFlags = [
|
||||
# "-DPARAVIEW_USE_MPI:BOOL=ON"
|
||||
"-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"
|
||||
# "-DPYTHON_INCLUDE_DIR=${python}/include"
|
||||
# "-DPYTHON_LIBRARY="
|
||||
];
|
||||
|
||||
# I don't enable it due to memory bounds
|
||||
enableParallelBuilding = false;
|
||||
|
||||
buildInputs = [ cmake qt4 ];
|
||||
buildInputs = [ cmake qt4 hdf5 mpich2 python libxml2 mesa ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.paraview.org/";
|
||||
|
|
Loading…
Reference in a new issue