2015-03-06 11:09:01 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, cmake, mesa, libX11, xproto, libXt
|
2013-10-28 08:56:19 +00:00
|
|
|
, qtLib ? null }:
|
2012-10-16 21:19:59 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
|
|
|
majorVersion = "5.10";
|
2014-09-16 22:20:12 +00:00
|
|
|
minorVersion = "1";
|
2012-10-16 21:19:59 +00:00
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
in
|
2009-02-08 16:27:57 +00:00
|
|
|
|
2010-02-13 16:06:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-28 08:56:19 +00:00
|
|
|
name = "vtk-${os (qtLib != null) "qvtk-"}${version}";
|
2009-02-08 16:27:57 +00:00
|
|
|
src = fetchurl {
|
2012-10-16 21:19:59 +00:00
|
|
|
url = "${meta.homepage}files/release/${majorVersion}/vtk-${version}.tar.gz";
|
2014-09-16 22:20:12 +00:00
|
|
|
sha256 = "1fxxgsa7967gdphkl07lbfr6dcbq9a72z5kynlklxn7hyp0l18pi";
|
2009-02-08 16:27:57 +00:00
|
|
|
};
|
2013-05-09 10:23:21 +00:00
|
|
|
|
2015-03-06 11:09:01 +00:00
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1138466
|
|
|
|
postPatch = "sed '/^#define GL_GLEXT_LEGACY/d' -i ./Rendering/vtkOpenGL.h";
|
|
|
|
|
2012-10-16 21:19:59 +00:00
|
|
|
buildInputs = [ cmake mesa libX11 xproto libXt ]
|
2013-10-28 08:56:19 +00:00
|
|
|
++ optional (qtLib != null) qtLib;
|
2012-10-16 21:19:59 +00:00
|
|
|
|
2013-05-09 10:23:21 +00:00
|
|
|
# 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
|
|
|
|
# built and requiring one of the shared objects.
|
|
|
|
# At least, we use -fPIC for other packages to be able to use this in shared
|
|
|
|
# objects.
|
2013-10-28 08:56:19 +00:00
|
|
|
cmakeFlags = [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" ]
|
|
|
|
++ optional (qtLib != null) [ "-DVTK_USE_QT:BOOL=ON" ];
|
2009-02-08 16:27:57 +00:00
|
|
|
|
2013-05-09 10:23:21 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-02-08 16:27:57 +00:00
|
|
|
meta = {
|
|
|
|
description = "Open source libraries for 3D computer graphics, image processing and visualization";
|
|
|
|
homepage = http://www.vtk.org/;
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2012-10-16 21:19:59 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric bbenoist ];
|
2009-10-01 20:18:17 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-02-08 16:27:57 +00:00
|
|
|
};
|
|
|
|
}
|