mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
OpenImageIO Tidy Up: moved to applications/graphics
oiio includes CLI tools for manipulating graphics
This commit is contained in:
parent
64bc336f50
commit
67a1becfdc
@ -1,4 +1,6 @@
|
||||
{ stdenv, fetchurl, cmake, unzip, boost, libjpeg, libtiff, libpng, openexr, ilmbase }:
|
||||
{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff, openexr
|
||||
, unzip
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "oiio-${version}";
|
||||
@ -9,13 +11,16 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "08a6qhplzs8kianqb1gjgrndg81h3il5531jn9g6i4940b1xispg";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake unzip boost libjpeg libtiff libpng openexr ilmbase ];
|
||||
buildInputs = [ boost cmake ilmbase libjpeg libpng libtiff openexr unzip ];
|
||||
|
||||
configurePhase = "";
|
||||
|
||||
buildPhase = "make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 INSTALLDIR=$out dist_dir=";
|
||||
buildPhase = ''
|
||||
make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 \
|
||||
INSTALLDIR=$out dist_dir=
|
||||
'';
|
||||
|
||||
installPhase = "echo hallo";
|
||||
installPhase = "";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.openimageio.org;
|
Loading…
Reference in New Issue
Block a user