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