forked from mirrors/nixpkgs
3eb7049c48
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.3.1 with grep in /nix/store/68xswr0fs8b098ww8l832z2gljmfgpwd-opensubdiv-3.3.1 - found 3.3.1 in filename of file in /nix/store/68xswr0fs8b098ww8l832z2gljmfgpwd-opensubdiv-3.3.1
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, xorg, libGLU
|
|
, libGL, glew, ocl-icd, python3
|
|
, cudaSupport ? false, cudatoolkit
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opensubdiv-${version}";
|
|
version = "3.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PixarAnimationStudios";
|
|
repo = "OpenSubdiv";
|
|
rev = "v${lib.replaceChars ["."] ["_"] version}";
|
|
sha256 = "1s96038yvf8wch5gv537iigqflxx7rh9wwn3wlrk8f9yfdwv1mk1";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
buildInputs =
|
|
[ cmake pkgconfig libGLU libGL 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.optionals cudaSupport [
|
|
"-DOSD_CUDA_NVCC_FLAGS=--gpu-architecture=compute_30"
|
|
"-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|