mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
vtk had a wrong version version in its 'name'
svn path=/nixpkgs/trunk/; revision=19978
This commit is contained in:
parent
cb7f9b8e52
commit
911dfd89fc
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
{stdenv, fetchurl, cmake, mesa, libX11, xproto, libXt }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "vtk-5.2.1";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vtk-5.4.2";
|
||||
src = fetchurl {
|
||||
url = http://www.vtk.org/files/release/5.4/vtk-5.4.2.tar.gz;
|
||||
url = "http://www.vtk.org/files/release/5.4/${name}.tar.gz";
|
||||
sha256 = "0gd7xlxiqww6xxcs2kicz0g6k147y3200np4jnsf10vlxs10az03";
|
||||
};
|
||||
buildInputs = [ cmake mesa libX11 xproto libXt ];
|
||||
|
|
Loading…
Reference in a new issue