summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-11-10 18:13:04 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-11-10 18:13:04 +0000
commit8d1e11606963e4a7825addd21bb7ae79e7c4cbe0 (patch)
treeaf13a723c6b3a45d89800e4713aecf67c83a2387 /pkgs/applications/graphics
parent01b6395203323fc211409656d42506110174d814 (diff)
Updating paraview
svn path=/nixpkgs/trunk/; revision=24651
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/paraview/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/paraview/default.nix b/pkgs/applications/graphics/paraview/default.nix
index 8ba089903eb5c..99bed17c966c9 100644
--- a/pkgs/applications/graphics/paraview/default.nix
+++ b/pkgs/applications/graphics/paraview/default.nix
@@ -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 = {