2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, boost, cmake, ilmbase, libjpeg, libpng, libtiff
|
2013-03-27 16:46:23 -07:00
|
|
|
, opencolorio, openexr, unzip
|
2013-03-27 15:29:17 -07:00
|
|
|
}:
|
2013-03-27 14:25:33 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-29 19:44:30 -07:00
|
|
|
pname = "openimageio";
|
2019-11-04 15:49:05 -08:00
|
|
|
version = "1.8.17";
|
2013-03-27 14:25:33 -07:00
|
|
|
|
2017-03-18 18:22:54 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenImageIO";
|
|
|
|
repo = "oiio";
|
|
|
|
rev = "Release-${version}";
|
2019-11-04 15:49:05 -08:00
|
|
|
sha256 = "0zq34szprgkrrayg5sl3whrsx2l6lr8nw4hdrnwv2qhn70jbi2w2";
|
2013-03-27 14:25:33 -07:00
|
|
|
};
|
|
|
|
|
2016-09-01 09:35:53 -07:00
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
|
2019-05-29 19:44:30 -07:00
|
|
|
nativeBuildInputs = [ cmake unzip ];
|
2013-12-16 05:25:01 -08:00
|
|
|
buildInputs = [
|
2017-11-13 13:42:42 -08:00
|
|
|
boost ilmbase libjpeg libpng
|
2017-03-18 18:22:54 -07:00
|
|
|
libtiff opencolorio openexr
|
2013-03-27 16:46:23 -07:00
|
|
|
];
|
2013-03-27 14:25:33 -07:00
|
|
|
|
2014-08-11 17:33:10 -07:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DUSE_PYTHON=OFF"
|
|
|
|
];
|
2013-03-27 14:25:33 -07:00
|
|
|
|
2019-05-29 19:44:30 -07:00
|
|
|
makeFlags = [
|
|
|
|
"ILMBASE_HOME=${ilmbase.dev}"
|
|
|
|
"OPENEXR_HOME=${openexr.dev}"
|
|
|
|
"USE_PYTHON=0"
|
|
|
|
"INSTALLDIR=${placeholder "out"}"
|
|
|
|
"dist_dir="
|
|
|
|
];
|
2015-07-02 06:01:04 -07:00
|
|
|
|
2021-03-21 09:54:49 -07:00
|
|
|
patches = [
|
|
|
|
# Backported from https://github.com/OpenImageIO/oiio/pull/2539 for 1.8.17
|
|
|
|
./2539_backport.patch
|
|
|
|
];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.openimageio.org";
|
2013-03-27 16:46:23 -07:00
|
|
|
description = "A library and tools for reading and writing images";
|
2013-03-27 14:25:33 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2017-11-13 13:42:42 -08:00
|
|
|
platforms = platforms.unix;
|
2013-03-27 14:25:33 -07:00
|
|
|
};
|
2013-06-22 15:11:42 -07:00
|
|
|
}
|