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

44 lines
996 B
Nix
Raw Normal View History

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