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

55 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, xorg, libGLU
, libGL, glew, ocl-icd, python3
2015-10-07 22:53:32 +00:00
, cudaSupport ? false, cudatoolkit
2017-11-13 22:14:46 +00:00
, darwin
2015-10-07 22:53:32 +00:00
}:
stdenv.mkDerivation rec {
name = "opensubdiv-${version}";
version = "3.3.1";
2015-10-07 22:53:32 +00:00
src = fetchFromGitHub {
owner = "PixarAnimationStudios";
repo = "OpenSubdiv";
rev = "v${lib.replaceChars ["."] ["_"] version}";
sha256 = "1s96038yvf8wch5gv537iigqflxx7rh9wwn3wlrk8f9yfdwv1mk1";
2015-10-07 22:53:32 +00:00
};
2016-09-01 16:02:53 +00:00
outputs = [ "out" "dev" ];
2015-10-07 22:53:32 +00:00
buildInputs =
2017-11-13 22:14:46 +00:00
[ cmake pkgconfig 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
]
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 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=compute_30"
"-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/cc"
];
2015-10-07 22:53:32 +00:00
enableParallelBuilding = true;
postInstall = "rm $out/lib/*.a";
2015-10-07 22:53:32 +00: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 22:53:32 +00:00
maintainers = [ lib.maintainers.eelco ];
license = lib.licenses.asl20;
};
}