mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
44 lines
998 B
Nix
44 lines
998 B
Nix
{ stdenv, fetchFromGitHub, boost, cmake, ilmbase, libjpeg, libpng, libtiff
|
|
, opencolorio, openexr, unzip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openimageio";
|
|
version = "1.8.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenImageIO";
|
|
repo = "oiio";
|
|
rev = "Release-${version}";
|
|
sha256 = "0zq34szprgkrrayg5sl3whrsx2l6lr8nw4hdrnwv2qhn70jbi2w2";
|
|
};
|
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
nativeBuildInputs = [ cmake unzip ];
|
|
buildInputs = [
|
|
boost ilmbase libjpeg libpng
|
|
libtiff opencolorio openexr
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_PYTHON=OFF"
|
|
];
|
|
|
|
makeFlags = [
|
|
"ILMBASE_HOME=${ilmbase.dev}"
|
|
"OPENEXR_HOME=${openexr.dev}"
|
|
"USE_PYTHON=0"
|
|
"INSTALLDIR=${placeholder "out"}"
|
|
"dist_dir="
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.openimageio.org";
|
|
description = "A library and tools for reading and writing images";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|