Updating paraview
svn path=/nixpkgs/trunk/; revision=24651
This commit is contained in:
parent
01b6395203
commit
8d1e116069
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue