Updating paraview

svn path=/nixpkgs/trunk/; revision=24651
This commit is contained in:
Lluís Batlle i Rossell 2010-11-10 18:13:04 +00:00
parent 01b6395203
commit 8d1e116069

View File

@ -1,16 +1,19 @@
{ fetchurl, stdenv, cmake, qt4 }:
stdenv.mkDerivation rec {
name = "paraview-3.8.0";
name = "paraview-3.8.1";
src = fetchurl {
url = "http://www.paraview.org/files/v3.8/ParaView-3.8.0.tar.gz";
sha256 = "0y20daf59hn9dmbp1cmx0085z34qccwps04hv2lh9s15namca9py";
url = "http://www.paraview.org/files/v3.8/ParaView-3.8.1.tar.gz";
sha256 = "0g169vc956gifkd90lcini63dkr5x3id3hkwcwxzriqamxr72r1p";
};
preConfigure = ''
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/paraview-3.8"
'';
# I don't enable it due to memory bounds
enableParallelBuilding = false;
buildInputs = [ cmake qt4 ];
meta = {