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-27 23:29:17 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-03-27 23:29:17 +0100
commit67a1becfdca20d51cc97d99103e6978b209844d2 (patch)
treeee7201c11ea16a70bd5ebfe9adcc7e3d97482392 /pkgs/applications/graphics/openimageio
parent64bc336f50a2203f8c8feccd0eef4b5462c6de16 (diff)
downloadnixpkgs-67a1becfdca20d51cc97d99103e6978b209844d2.tar
nixpkgs-67a1becfdca20d51cc97d99103e6978b209844d2.tar.gz
nixpkgs-67a1becfdca20d51cc97d99103e6978b209844d2.tar.bz2
nixpkgs-67a1becfdca20d51cc97d99103e6978b209844d2.tar.lz
nixpkgs-67a1becfdca20d51cc97d99103e6978b209844d2.tar.xz
nixpkgs-67a1becfdca20d51cc97d99103e6978b209844d2.tar.zst
nixpkgs-67a1becfdca20d51cc97d99103e6978b209844d2.zip
OpenImageIO Tidy Up: moved to applications/graphics
oiio includes CLI tools for manipulating graphics
Diffstat (limited to 'pkgs/applications/graphics/openimageio')
-rw-r--r--pkgs/applications/graphics/openimageio/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/openimageio/default.nix b/pkgs/applications/graphics/openimageio/default.nix
new file mode 100644
index 00000000000..2a5c66fae18
--- /dev/null
+++ b/pkgs/applications/graphics/openimageio/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, boost, cmake, ilmbase, libjpeg, libpng, libtiff, openexr
+, unzip
+}:
+
+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 ];
+
+  configurePhase = "";
+
+  buildPhase = ''
+    make ILMBASE_HOME=${ilmbase} OPENEXR_HOME=${openexr} USE_PYTHON=0 \
+      INSTALLDIR=$out dist_dir=
+  '';
+
+  installPhase = "";
+
+  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;
+  };
+}
\ No newline at end of file