summary refs log tree commit diff
path: root/pkgs/applications/graphics/paraview
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-05-29 12:23:42 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-05-29 12:23:42 +0000
commitd7e44fd3df2ef6141947c053e0450389b7a2260e (patch)
tree3ab31c97ec8410cc1dd88ad3426fdb6e3ef32d74 /pkgs/applications/graphics/paraview
parent333ee77ea19253ee22ef9b5130fea69dd755a33a (diff)
downloadnixpkgs-d7e44fd3df2ef6141947c053e0450389b7a2260e.tar
nixpkgs-d7e44fd3df2ef6141947c053e0450389b7a2260e.tar.gz
nixpkgs-d7e44fd3df2ef6141947c053e0450389b7a2260e.tar.bz2
nixpkgs-d7e44fd3df2ef6141947c053e0450389b7a2260e.tar.lz
nixpkgs-d7e44fd3df2ef6141947c053e0450389b7a2260e.tar.xz
nixpkgs-d7e44fd3df2ef6141947c053e0450389b7a2260e.tar.zst
nixpkgs-d7e44fd3df2ef6141947c053e0450389b7a2260e.zip
Updating paraview
svn path=/nixpkgs/trunk/; revision=22052
Diffstat (limited to 'pkgs/applications/graphics/paraview')
-rw-r--r--pkgs/applications/graphics/paraview/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/graphics/paraview/default.nix b/pkgs/applications/graphics/paraview/default.nix
index 6082c6a4ae4..8ba089903eb 100644
--- a/pkgs/applications/graphics/paraview/default.nix
+++ b/pkgs/applications/graphics/paraview/default.nix
@@ -1,14 +1,14 @@
 { fetchurl, stdenv, cmake, qt4 }:
 
 stdenv.mkDerivation rec {
-  name = "paraview-3.6.2";
+  name = "paraview-3.8.0";
   src = fetchurl {
-    url = "http://www.paraview.org/files/v3.6/${name}.tar.gz";
-    sha256 = "017axalkiaqd13jfbb4awcxvpndnzaq35ys7svm5rnizdwd5hbq6";
+    url = "http://www.paraview.org/files/v3.8/ParaView-3.8.0.tar.gz";
+    sha256 = "0y20daf59hn9dmbp1cmx0085z34qccwps04hv2lh9s15namca9py";
   };
 
   preConfigure = ''
-    export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/paraview-3.6"
+    export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/paraview-3.8"
   '';
 
   buildInputs = [ cmake qt4 ];