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

32 lines
838 B
Nix
Raw Normal View History

{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff, openexr
, unzip
}:
2013-03-27 22:25:33 +01:00
stdenv.mkDerivation rec {
name = "oiio-${version}";
version = "1.1.8";
src = fetchurl {
url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip";
sha256 = "08a6qhplzs8kianqb1gjgrndg81h3il5531jn9g6i4940b1xispg";
};
buildInputs = [ boost cmake ilmbase libjpeg libpng libtiff openexr unzip ];
2013-03-27 22:25:33 +01:00
configurePhase = "";
buildPhase = ''
make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 \
INSTALLDIR=$out dist_dir=
'';
2013-03-27 22:25:33 +01:00
installPhase = "";
2013-03-27 22:25:33 +01:00
meta = with stdenv.lib; {
homepage = http://www.openimageio.org;
description = "A library for reading and writing images";
license = licenses.bsd3;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}