vtk: 5.10.1 -> 7.0.0
This commit is contained in:
parent
dbd856d724
commit
d8e0ce402e
@ -5,24 +5,25 @@ with stdenv.lib;
|
|||||||
|
|
||||||
let
|
let
|
||||||
os = stdenv.lib.optionalString;
|
os = stdenv.lib.optionalString;
|
||||||
majorVersion = "5.10";
|
majorVersion = "7.0";
|
||||||
minorVersion = "1";
|
minorVersion = "0";
|
||||||
version = "${majorVersion}.${minorVersion}";
|
version = "${majorVersion}.${minorVersion}";
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "vtk-${os (qtLib != null) "qvtk-"}${version}";
|
name = "vtk-${os (qtLib != null) "qvtk-"}${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "${meta.homepage}files/release/${majorVersion}/vtk-${version}.tar.gz";
|
url = "${meta.homepage}files/release/${majorVersion}/VTK-${version}.tar.gz";
|
||||||
sha256 = "1fxxgsa7967gdphkl07lbfr6dcbq9a72z5kynlklxn7hyp0l18pi";
|
sha256 = "1hrjxkcvs3ap0bdhk90vymz5pgvxmg7q6sz8ab3wsyddbshr1abq";
|
||||||
};
|
};
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1138466
|
|
||||||
postPatch = "sed '/^#define GL_GLEXT_LEGACY/d' -i ./Rendering/vtkOpenGL.h";
|
|
||||||
|
|
||||||
buildInputs = [ cmake mesa libX11 xproto libXt ]
|
buildInputs = [ cmake mesa libX11 xproto libXt ]
|
||||||
++ optional (qtLib != null) qtLib;
|
++ optional (qtLib != null) qtLib;
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
export LD_LIBRARY_PATH="$(pwd)/lib";
|
||||||
|
'';
|
||||||
|
|
||||||
# Shared libraries don't work, because of rpath troubles with the current
|
# Shared libraries don't work, because of rpath troubles with the current
|
||||||
# nixpkgs camke approach. It wants to call a binary at build time, just
|
# nixpkgs camke approach. It wants to call a binary at build time, just
|
||||||
# built and requiring one of the shared objects.
|
# built and requiring one of the shared objects.
|
||||||
|
Loading…
Reference in New Issue
Block a user