2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, boost, cmake, ilmbase, libjpeg, libpng, libtiff
|
2021-06-24 02:33:50 +02:00
|
|
|
, opencolorio_1, openexr, unzip
|
2013-03-27 23:29:17 +01:00
|
|
|
}:
|
2013-03-27 22:25:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-30 04:44:30 +02:00
|
|
|
pname = "openimageio";
|
2019-11-05 00:49:05 +01:00
|
|
|
version = "1.8.17";
|
2013-03-27 22:25:33 +01:00
|
|
|
|
2017-03-19 02:22:54 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenImageIO";
|
|
|
|
repo = "oiio";
|
|
|
|
rev = "Release-${version}";
|
2019-11-05 00:49:05 +01:00
|
|
|
sha256 = "0zq34szprgkrrayg5sl3whrsx2l6lr8nw4hdrnwv2qhn70jbi2w2";
|
2013-03-27 22:25:33 +01:00
|
|
|
};
|
|
|
|
|
2016-09-01 18:35:53 +02:00
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
|
2019-05-30 04:44:30 +02:00
|
|
|
nativeBuildInputs = [ cmake unzip ];
|
2013-12-16 14:25:01 +01:00
|
|
|
buildInputs = [
|
2017-11-13 22:42:42 +01:00
|
|
|
boost ilmbase libjpeg libpng
|
2021-06-24 02:33:50 +02:00
|
|
|
libtiff opencolorio_1 openexr
|
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
|
|
|
|
2019-05-30 04:44:30 +02:00
|
|
|
makeFlags = [
|
|
|
|
"ILMBASE_HOME=${ilmbase.dev}"
|
|
|
|
"OPENEXR_HOME=${openexr.dev}"
|
|
|
|
"USE_PYTHON=0"
|
|
|
|
"INSTALLDIR=${placeholder "out"}"
|
|
|
|
"dist_dir="
|
|
|
|
];
|
2015-07-02 15:01:04 +02:00
|
|
|
|
2021-03-21 17:54:49 +01:00
|
|
|
patches = [
|
|
|
|
# Backported from https://github.com/OpenImageIO/oiio/pull/2539 for 1.8.17
|
|
|
|
./2539_backport.patch
|
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
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 ];
|
2017-11-13 22:42:42 +01:00
|
|
|
platforms = platforms.unix;
|
2013-03-27 22:25:33 +01:00
|
|
|
};
|
2013-06-23 00:11:42 +02:00
|
|
|
}
|