2019-02-03 15:32:11 +00:00
|
|
|
|
{ config, lib, stdenv, fetchFromGitHub, cmake, pkgconfig, xorg, libGLU
|
2018-02-24 12:06:44 +00:00
|
|
|
|
, libGL, glew, ocl-icd, python3
|
2019-02-03 15:32:11 +00:00
|
|
|
|
, cudaSupport ? config.cudaSupport or false, cudatoolkit
|
2017-11-13 22:14:46 +00:00
|
|
|
|
, darwin
|
2015-10-07 23:53:32 +01:00
|
|
|
|
}:
|
|
|
|
|
|
2017-10-16 01:34:16 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "opensubdiv";
|
2019-07-02 06:11:48 +01:00
|
|
|
|
version = "3.4.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}";
|
2019-07-02 06:11:48 +01:00
|
|
|
|
sha256 = "0cippg6aqc5dlya1cmh3908pwssrg52fwgyylnvz5343yrxmgk12";
|
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 =
|
2017-11-13 22:14:46 +00:00
|
|
|
|
[ cmake pkgconfig libGLU libGL 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
|
|
|
|
]
|
2017-11-13 22:14:46 +00:00
|
|
|
|
++ lib.optional (!stdenv.isDarwin) ocl-icd
|
|
|
|
|
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [OpenCL Cocoa CoreVideo IOKit AppKit AGL ])
|
2015-10-07 23:53:32 +01:00
|
|
|
|
++ lib.optional cudaSupport cudatoolkit;
|
|
|
|
|
|
|
|
|
|
cmakeFlags =
|
|
|
|
|
[ "-DNO_TUTORIALS=1"
|
|
|
|
|
"-DNO_REGRESSION=1"
|
|
|
|
|
"-DNO_EXAMPLES=1"
|
2017-11-13 22:14:46 +00:00
|
|
|
|
"-DNO_METAL=1" # don’t have metal in apple sdk
|
|
|
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
2017-10-17 16:13:23 +01:00
|
|
|
|
"-DGLEW_INCLUDE_DIR=${glew.dev}/include"
|
|
|
|
|
"-DGLEW_LIBRARY=${glew.dev}/lib"
|
2018-02-25 17:06:29 +00:00
|
|
|
|
] ++ lib.optionals cudaSupport [
|
|
|
|
|
"-DOSD_CUDA_NVCC_FLAGS=--gpu-architecture=compute_30"
|
|
|
|
|
"-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc"
|
|
|
|
|
];
|
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;
|
2017-11-13 22:14:46 +00:00
|
|
|
|
platforms = lib.platforms.unix;
|
2015-10-07 23:53:32 +01:00
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
|
};
|
|
|
|
|
}
|