nixpkgs/pkgs/development/libraries/opensubdiv/default.nix
Nikolay Amiantov b317d7cfd4 opensubdiv: 3.2.0 -> 3.3.0
Fix build with new CUDA toolkit.
2017-10-19 12:47:56 +03:00

47 lines
1.3 KiB
Nix

{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, xorg, mesa_glu
, mesa_noglu, glew, ocl-icd, python3
, cudaSupport ? false, cudatoolkit
}:
stdenv.mkDerivation rec {
name = "opensubdiv-${version}";
version = "3.3.0";
src = fetchFromGitHub {
owner = "PixarAnimationStudios";
repo = "OpenSubdiv";
rev = "v${lib.replaceChars ["."] ["_"] version}";
sha256 = "0wpjwfik4q9s4r30hndhzmfyzv968mmg5lgng0123l07mn47d2yl";
};
outputs = [ "out" "dev" ];
buildInputs =
[ cmake pkgconfig mesa_glu mesa_noglu ocl-icd python3
# FIXME: these are not actually needed, but the configure script wants them.
glew xorg.libX11 xorg.libXrandr xorg.libXxf86vm xorg.libXcursor
xorg.libXinerama xorg.libXi
]
++ lib.optional cudaSupport cudatoolkit;
cmakeFlags =
[ "-DNO_TUTORIALS=1"
"-DNO_REGRESSION=1"
"-DNO_EXAMPLES=1"
"-DGLEW_INCLUDE_DIR=${glew.dev}/include"
"-DGLEW_LIBRARY=${glew.dev}/lib"
] ++ lib.optional cudaSupport "-DOSD_CUDA_NVCC_FLAGS=--gpu-architecture=compute_30";
enableParallelBuilding = true;
postInstall = "rm $out/lib/*.a";
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;
};
}