45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff
|
|
, opencolorio, openexr, unzip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openimageio-${version}";
|
|
version = "1.6.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip";
|
|
sha256 = "0cr0z81a41bg193dx9crcq1mns7mmzz7qys4lrbm18cmdbwkk88x";
|
|
};
|
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
buildInputs = [
|
|
boost cmake ilmbase libjpeg libpng libtiff opencolorio openexr
|
|
unzip
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_PYTHON=OFF"
|
|
];
|
|
|
|
preBuild = ''
|
|
makeFlags="ILMBASE_HOME=${ilmbase.dev} OPENEXR_HOME=${openexr.dev} USE_PYTHON=0
|
|
INSTALLDIR=$out dist_dir="
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $bin
|
|
mv $out/bin $bin/
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.openimageio.org;
|
|
description = "A library and tools for reading and writing images";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|