nixpkgs/pkgs/development/libraries/opensubdiv/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
2.0 KiB
Nix
Raw Normal View History

{ config, lib, stdenv, fetchFromGitHub, cmake, pkg-config, xorg, libGLU
, libGL, glew, ocl-icd, python3
, cudaSupport ? config.cudaSupport or false, cudatoolkit
# For visibility mostly. The whole approach to cuda architectures and capabilities
# will be reworked soon.
, cudaArch ? "compute_37"
, openclSupport ? !cudaSupport
2017-11-13 22:14:46 +00:00
, darwin
2015-10-07 22:53:32 +00:00
}:
stdenv.mkDerivation rec {
pname = "opensubdiv";
2023-02-09 16:55:39 +00:00
version = "3.5.0";
2015-10-07 22:53:32 +00:00
src = fetchFromGitHub {
owner = "PixarAnimationStudios";
repo = "OpenSubdiv";
rev = "v${lib.replaceStrings ["."] ["_"] version}";
2023-02-09 16:55:39 +00:00
sha256 = "sha256-pYD2HxAszE9Ux1xsSJ7s2R13U8ct5tDo3ZP7H0+F9Rc=";
2015-10-07 22:53:32 +00:00
};
2016-09-01 16:02:53 +00:00
outputs = [ "out" "dev" ];
nativeBuildInputs = [ cmake pkg-config ];
2015-10-07 22:53:32 +00:00
buildInputs =
[ libGLU libGL python3
2015-10-07 22:53:32 +00:00
# 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
2015-10-07 22:53:32 +00:00
]
++ lib.optional (openclSupport && !stdenv.isDarwin) ocl-icd
2017-11-13 22:14:46 +00:00
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [OpenCL Cocoa CoreVideo IOKit AppKit AGL ])
2015-10-07 22:53:32 +00: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" # dont have metal in apple sdk
] ++ lib.optionals (!stdenv.isDarwin) [
"-DGLEW_INCLUDE_DIR=${glew.dev}/include"
"-DGLEW_LIBRARY=${glew.dev}/lib"
] ++ lib.optionals cudaSupport [
"-DOSD_CUDA_NVCC_FLAGS=--gpu-architecture=${cudaArch}"
"-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc"
] ++ lib.optionals (!openclSupport) [
"-DNO_OPENCL=1"
];
2015-10-07 22:53:32 +00:00
postInstall = "rm $out/lib/*.a";
2015-10-07 22:53:32 +00:00
meta = {
description = "An Open-Source subdivision surface library";
2020-04-13 01:43:47 +00:00
homepage = "http://graphics.pixar.com/opensubdiv";
broken = openclSupport && cudaSupport;
2017-11-13 22:14:46 +00:00
platforms = lib.platforms.unix;
2015-10-07 22:53:32 +00:00
maintainers = [ lib.maintainers.eelco ];
license = lib.licenses.asl20;
};
}