Fix oiio build; maybe will fix blender build
This commit is contained in:
parent
c346d22647
commit
004be1bf51
@ -4,26 +4,26 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "oiio-${version}";
|
name = "oiio-${version}";
|
||||||
version = "1.3.12";
|
version = "1.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/OpenImageIO/oiio/archive/Release-${version}.zip";
|
url = "https://github.com/OpenImageIO/oiio/archive/RB-${version}.zip";
|
||||||
sha256 = "114jx4pcqhzdchzpxbwrfzqmnxr2bm8cw13g4akz1hg8pvr1dhsb";
|
sha256 = "0ldj3hwpz363l1zyzf6c62wc5d2cpbiszlpjvv5w6rrsx2ddbbn1";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost cmake ilmbase libjpeg libpng libtiff opencolorio openexr unzip
|
boost cmake ilmbase libjpeg libpng libtiff opencolorio openexr unzip
|
||||||
];
|
];
|
||||||
|
|
||||||
configurePhase = "";
|
cmakeFlags = [
|
||||||
|
"-DUSE_PYTHON=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 \
|
make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 \
|
||||||
INSTALLDIR=$out dist_dir=
|
INSTALLDIR=$out dist_dir=
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ":";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.openimageio.org;
|
homepage = http://www.openimageio.org;
|
||||||
description = "A library and tools for reading and writing images";
|
description = "A library and tools for reading and writing images";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user