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

50 lines
1.1 KiB
Nix
Raw Normal View History

2017-09-17 20:42:14 +00:00
{ stdenv, fetchFromGitHub, unzip, openexr, boost, jemalloc, c-blosc, ilmbase, tbb }:
stdenv.mkDerivation rec
{
name = "openvdb-${version}";
version = "5.2.0";
2017-09-17 20:42:14 +00:00
src = fetchFromGitHub {
owner = "dreamworksanimation";
repo = "openvdb";
rev = "v${version}";
sha256 = "1yykrbc3nnnmpmmk0dz4b4y5xl4hl3ayjpqw0baq8yx2614r46b5";
2017-09-17 20:42:14 +00:00
};
outputs = [ "out" ];
buildInputs = [ unzip openexr boost tbb jemalloc c-blosc ilmbase ];
setSourceRoot = ''
sourceRoot=$(echo */openvdb)
'';
2017-09-17 20:42:14 +00:00
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/
2018-03-23 23:16:15 +00:00
'';
2017-09-17 20:42:14 +00:00
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 ];
2018-03-23 23:16:15 +00:00
platforms = platforms.linux;
2017-09-17 20:42:14 +00:00
license = licenses.mpl20;
};
}