2013-03-27 23:46:23 +00:00
|
|
|
{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff
|
|
|
|
, opencolorio, openexr, unzip
|
2013-03-27 22:29:17 +00:00
|
|
|
}:
|
2013-03-27 21:25:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-02 14:01:04 +01:00
|
|
|
name = "openimageio-${version}";
|
|
|
|
version = "1.4.16";
|
2013-03-27 21:25:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-26 11:44:02 +01:00
|
|
|
url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip";
|
2015-07-02 14:01:04 +01:00
|
|
|
sha256 = "0f9gspsjhniz992c04dm4lvffzz7zjqn1n34nqn6c32r498kimcj";
|
2013-03-27 21:25:33 +00:00
|
|
|
};
|
|
|
|
|
2013-12-16 13:25:01 +00:00
|
|
|
buildInputs = [
|
2014-10-01 20:55:40 +01:00
|
|
|
boost cmake ilmbase libjpeg libpng libtiff opencolorio openexr
|
2014-09-19 18:56:08 +01:00
|
|
|
unzip
|
2013-03-27 23:46:23 +00:00
|
|
|
];
|
2013-03-27 21:25:33 +00:00
|
|
|
|
2014-08-12 01:33:10 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DUSE_PYTHON=OFF"
|
|
|
|
];
|
2013-03-27 21:25:33 +00:00
|
|
|
|
2015-08-12 09:16:12 +01:00
|
|
|
preBuild = ''
|
|
|
|
makeFlags="ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0
|
|
|
|
INSTALLDIR=$out dist_dir="
|
2013-03-27 22:29:17 +00:00
|
|
|
'';
|
2013-03-27 21:25:33 +00:00
|
|
|
|
2015-07-02 14:01:04 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-03-27 21:25:33 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.openimageio.org;
|
2013-03-27 23:46:23 +00:00
|
|
|
description = "A library and tools for reading and writing images";
|
2013-03-27 21:25:33 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2013-06-22 23:11:42 +01:00
|
|
|
}
|