nixpkgs/pkgs/applications/graphics/openimageio/default.nix

45 lines
1 KiB
Nix
Raw Normal View History

2017-03-19 01:22:54 +00:00
{ stdenv, fetchFromGitHub, boost, cmake, ilmbase, libjpeg, libpng, libtiff
, opencolorio, openexr, unzip
}:
2013-03-27 21:25:33 +00:00
stdenv.mkDerivation rec {
pname = "openimageio";
version = "1.8.16";
2013-03-27 21:25:33 +00:00
2017-03-19 01:22:54 +00:00
src = fetchFromGitHub {
owner = "OpenImageIO";
repo = "oiio";
rev = "Release-${version}";
sha256 = "0isx137c6anvs1xfxi0z35v1cw855xvnq2ca0pakqqpdh0yivrps";
2013-03-27 21:25:33 +00:00
};
2016-09-01 16:35:53 +00:00
outputs = [ "bin" "out" "dev" "doc" ];
nativeBuildInputs = [ cmake unzip ];
2013-12-16 13:25:01 +00:00
buildInputs = [
2017-11-13 21:42:42 +00:00
boost ilmbase libjpeg libpng
2017-03-19 01:22:54 +00:00
libtiff opencolorio openexr
];
2013-03-27 21:25:33 +00:00
cmakeFlags = [
"-DUSE_PYTHON=OFF"
];
2013-03-27 21:25:33 +00:00
makeFlags = [
"ILMBASE_HOME=${ilmbase.dev}"
"OPENEXR_HOME=${openexr.dev}"
"USE_PYTHON=0"
"INSTALLDIR=${placeholder "out"}"
"dist_dir="
];
2013-03-27 21:25:33 +00:00
meta = with stdenv.lib; {
homepage = http://www.openimageio.org;
description = "A library and tools for reading and writing images";
2013-03-27 21:25:33 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.goibhniu ];
2017-11-13 21:42:42 +00:00
platforms = platforms.unix;
badPlatforms = [ "x86_64-darwin" ];
2013-03-27 21:25:33 +00:00
};
2013-06-22 22:11:42 +00:00
}