2017-10-16 01:34:16 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, xorg, mesa_glu
|
2018-02-24 12:06:44 +00:00
|
|
|
, libGL, glew, ocl-icd, python3
|
2015-10-07 23:53:32 +01:00
|
|
|
, cudaSupport ? false, cudatoolkit
|
|
|
|
}:
|
|
|
|
|
2017-10-16 01:34:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-02-28 14:16:01 +00:00
|
|
|
name = "opensubdiv-${version}";
|
2017-10-16 01:46:30 +01:00
|
|
|
version = "3.3.0";
|
2015-10-07 23:53:32 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PixarAnimationStudios";
|
|
|
|
repo = "OpenSubdiv";
|
2017-02-28 14:16:01 +00:00
|
|
|
rev = "v${lib.replaceChars ["."] ["_"] version}";
|
2017-10-16 01:46:30 +01:00
|
|
|
sha256 = "0wpjwfik4q9s4r30hndhzmfyzv968mmg5lgng0123l07mn47d2yl";
|
2015-10-07 23:53:32 +01:00
|
|
|
};
|
|
|
|
|
2016-09-01 17:02:53 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2015-10-07 23:53:32 +01:00
|
|
|
buildInputs =
|
2018-02-24 12:06:44 +00:00
|
|
|
[ cmake pkgconfig mesa_glu libGL ocl-icd python3
|
2015-10-07 23:53:32 +01:00
|
|
|
# FIXME: these are not actually needed, but the configure script wants them.
|
2017-02-28 14:16:01 +00:00
|
|
|
glew xorg.libX11 xorg.libXrandr xorg.libXxf86vm xorg.libXcursor
|
|
|
|
xorg.libXinerama xorg.libXi
|
2015-10-07 23:53:32 +01:00
|
|
|
]
|
|
|
|
++ lib.optional cudaSupport cudatoolkit;
|
|
|
|
|
|
|
|
cmakeFlags =
|
|
|
|
[ "-DNO_TUTORIALS=1"
|
|
|
|
"-DNO_REGRESSION=1"
|
|
|
|
"-DNO_EXAMPLES=1"
|
2017-10-17 16:13:23 +01:00
|
|
|
"-DGLEW_INCLUDE_DIR=${glew.dev}/include"
|
|
|
|
"-DGLEW_LIBRARY=${glew.dev}/lib"
|
2017-10-16 01:46:30 +01:00
|
|
|
] ++ lib.optional cudaSupport "-DOSD_CUDA_NVCC_FLAGS=--gpu-architecture=compute_30";
|
2015-10-07 23:53:32 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-02-14 10:16:37 +00:00
|
|
|
postInstall = "rm $out/lib/*.a";
|
2016-09-01 16:22:49 +01:00
|
|
|
|
2015-10-07 23:53:32 +01:00
|
|
|
meta = {
|
|
|
|
description = "An Open-Source subdivision surface library";
|
|
|
|
homepage = http://graphics.pixar.com/opensubdiv;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|