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

45 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff
, opencolorio, openexr, unzip
}:
2013-03-27 21:25:33 +00:00
stdenv.mkDerivation rec {
name = "openimageio-${version}";
version = "1.6.11";
2013-03-27 21:25:33 +00:00
src = fetchurl {
url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip";
sha256 = "0cr0z81a41bg193dx9crcq1mns7mmzz7qys4lrbm18cmdbwkk88x";
2013-03-27 21:25:33 +00:00
};
2016-09-01 16:35:53 +00:00
outputs = [ "bin" "out" "dev" "doc" ];
2013-12-16 13:25:01 +00:00
buildInputs = [
2014-10-01 19:55:40 +00:00
boost cmake ilmbase libjpeg libpng libtiff opencolorio openexr
2014-09-19 17:56:08 +00:00
unzip
];
2013-03-27 21:25:33 +00:00
cmakeFlags = [
"-DUSE_PYTHON=OFF"
];
2013-03-27 21:25:33 +00:00
preBuild = ''
2016-09-01 16:11:21 +00:00
makeFlags="ILMBASE_HOME=${ilmbase.dev} OPENEXR_HOME=${openexr.dev} USE_PYTHON=0
INSTALLDIR=$out dist_dir="
'';
2013-03-27 21:25:33 +00:00
2016-09-01 16:35:53 +00:00
postInstall = ''
mkdir -p $bin
mv $out/bin $bin/
'';
enableParallelBuilding = true;
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 ];
platforms = platforms.linux;
};
2013-06-22 22:11:42 +00:00
}