37a5ba3214
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openvdb/versions. 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 5.1.0 with grep in /nix/store/firif9xzzgizin13337znminprn0h2g1-openvdb-5.1.0 - directory tree listing: https://gist.github.com/ab56d3a535f58829ccdfb0187ff9afed
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, unzip, openexr, boost, jemalloc, c-blosc, ilmbase, tbb }:
|
|
|
|
stdenv.mkDerivation rec
|
|
{
|
|
name = "openvdb-${version}";
|
|
version = "5.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dreamworksanimation";
|
|
repo = "openvdb";
|
|
rev = "v${version}";
|
|
sha256 = "1als53dnbnwa66k16vy95h1rhpdzz6i80c0gc2g3i17qbasl6ni5";
|
|
};
|
|
|
|
outputs = [ "out" ];
|
|
|
|
buildInputs = [ unzip openexr boost tbb jemalloc c-blosc ilmbase ];
|
|
|
|
setSourceRoot = ''
|
|
sourceRoot=$(echo */openvdb)
|
|
'';
|
|
|
|
installTargets = "install_lib";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildFlags = ''lib
|
|
DESTDIR=$(out)
|
|
HALF_LIB=-lHalf
|
|
TBB_LIB=-ltbb
|
|
BLOSC_LIB=-lblosc
|
|
LOG4CPLUS_LIB=
|
|
BLOSC_INCLUDE_DIR=${c-blosc}/include/
|
|
BLOSC_LIB_DIR=${c-blosc}/lib/
|
|
'';
|
|
|
|
installFlags = ''DESTDIR=$(out)'';
|
|
|
|
NIX_CFLAGS_COMPILE="-I${openexr.dev}/include/OpenEXR -I${ilmbase.dev}/include/OpenEXR/";
|
|
NIX_LDFLAGS="-lboost_iostreams";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An open framework for voxel";
|
|
homepage = "http://www.openvdb.org";
|
|
maintainers = [ maintainers.guibou ];
|
|
platforms = platforms.linux;
|
|
license = licenses.mpl20;
|
|
};
|
|
}
|