summary refs log tree commit diff
path: root/pkgs/applications/graphics/openimageio
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-03-28 00:46:23 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-03-28 00:46:23 +0100
commit043d21b69d85e61229f60f4985525f9f59fb9fba (patch)
tree21ccee88425bfcb481cf64662a5ac3741c3e65c9 /pkgs/applications/graphics/openimageio
parent8ef25cf87674239fdef5ddc38acc0d7e5f54be5a (diff)
downloadnixpkgs-043d21b69d85e61229f60f4985525f9f59fb9fba.tar
nixpkgs-043d21b69d85e61229f60f4985525f9f59fb9fba.tar.gz
nixpkgs-043d21b69d85e61229f60f4985525f9f59fb9fba.tar.bz2
nixpkgs-043d21b69d85e61229f60f4985525f9f59fb9fba.tar.lz
nixpkgs-043d21b69d85e61229f60f4985525f9f59fb9fba.tar.xz
nixpkgs-043d21b69d85e61229f60f4985525f9f59fb9fba.tar.zst
nixpkgs-043d21b69d85e61229f60f4985525f9f59fb9fba.zip
Add OpenColorIO support to OpenImageIO and tidy up
Diffstat (limited to 'pkgs/applications/graphics/openimageio')
-rw-r--r--pkgs/applications/graphics/openimageio/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/openimageio/default.nix b/pkgs/applications/graphics/openimageio/default.nix
index 2a5c66fae18..fa7d16ccf0a 100644
--- a/pkgs/applications/graphics/openimageio/default.nix
+++ b/pkgs/applications/graphics/openimageio/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff, openexr
-, unzip
+{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff
+, opencolorio, openexr, unzip
 }:
 
 stdenv.mkDerivation rec {
@@ -11,7 +11,9 @@ stdenv.mkDerivation rec {
     sha256 = "08a6qhplzs8kianqb1gjgrndg81h3il5531jn9g6i4940b1xispg";
   };
 
-  buildInputs = [ boost cmake ilmbase libjpeg libpng libtiff openexr unzip ];
+  buildInputs = [ 
+    boost cmake ilmbase libjpeg libpng libtiff opencolorio openexr unzip
+  ];
 
   configurePhase = "";
 
@@ -20,11 +22,11 @@ stdenv.mkDerivation rec {
       INSTALLDIR=$out dist_dir=
   '';
 
-  installPhase = "";
+  installPhase = ":";
 
   meta = with stdenv.lib; {
     homepage = http://www.openimageio.org;
-    description = "A library for reading and writing images";
+    description = "A library and tools for reading and writing images";
     license = licenses.bsd3;
     maintainers = [ maintainers.goibhniu ];
     platforms = platforms.linux;