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

47 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, xorg, mesa_glu
, mesa_noglu, glew, ocl-icd, python3
2015-10-07 22:53:32 +00:00
, cudaSupport ? false, cudatoolkit
}:
stdenv.mkDerivation rec {
name = "opensubdiv-${version}";
version = "3.2.0";
2015-10-07 22:53:32 +00:00
src = fetchFromGitHub {
owner = "PixarAnimationStudios";
repo = "OpenSubdiv";
rev = "v${lib.replaceChars ["."] ["_"] version}";
sha256 = "0wk12n1s8za3sz8d6bmfm3rfjyx20j48gy1xp57dvbnjvlvzqy3w";
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 =
[ cmake pkgconfig mesa_glu mesa_noglu ocl-icd 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 cudaSupport cudatoolkit;
cmakeFlags =
[ "-DNO_TUTORIALS=1"
"-DNO_REGRESSION=1"
"-DNO_EXAMPLES=1"
"-DGLEW_INCLUDE_DIR=${glew.dev}/include"
"-DGLEW_LIBRARY=${glew.dev}/lib"
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;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.eelco ];
license = lib.licenses.asl20;
};
}