about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-03-28 00:52:08 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-03-28 00:52:08 +0100
commitca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100 (patch)
tree41c76949d445678952a4a349f6ea9dc0fa4720cd /pkgs
parent5c40e28dfb7a29f30af3489347f845c7ebbefaf9 (diff)
downloadnixlib-ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100.tar
nixlib-ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100.tar.gz
nixlib-ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100.tar.bz2
nixlib-ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100.tar.lz
nixlib-ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100.tar.xz
nixlib-ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100.tar.zst
nixlib-ca2a39757c7850f2e7ec7a0b8eee6fb5ecc8e100.zip
Blender: enable extra features in the Video Sequence Editor
FFMPEG support allows a greater variety of export and import options.
SNDFILE support allows WAV and other sound file formats to be used.
JACK support allows blender to be used with XJadeo, Ardour or any other JACK away audio editor.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/blender/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix
index b9c32c982ec4..763a7c2a6e55 100644
--- a/pkgs/applications/misc/blender/default.nix
+++ b/pkgs/applications/misc/blender/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, SDL, cmake, ffmpeg, gettext, glew, ilmbase, libXi, libjpeg,
-libpng, libsamplerate, libtiff, mesa, oiio, openal, openexr, openjpeg,
+{ stdenv, fetchurl, SDL, cmake, ffmpeg, jackaudio, gettext, glew, ilmbase, libXi, libjpeg,
+libpng, libsamplerate, libsndfile, libtiff, mesa, opencolorio, openimageio, openal, openexr, openjpeg,
 python, zlib, boost }:
 
 stdenv.mkDerivation rec {
@@ -10,13 +10,17 @@ stdenv.mkDerivation rec {
     sha256 = "0wj8x9xk5irvsjc3rm7wzml1j47xcdpdpy84kidafk02biskcqcb";
   };
 
-  buildInputs = [ cmake mesa ffmpeg gettext python glew libjpeg libpng zlib openal
-    SDL openexr libsamplerate libXi libtiff ilmbase oiio openjpeg boost ];
+  buildInputs = [ cmake mesa ffmpeg jackaudio gettext python glew libjpeg libpng zlib openal
+    SDL openexr libsamplerate libsndfile libXi libtiff ilmbase opencolorio openimageio openjpeg boost ];
 
 
   cmakeFlags = [
     "-DOPENEXR_INC=${openexr}/include/OpenEXR"
     "-DWITH_OPENCOLLADA=OFF"
+    "-DWITH_CODEC_FFMPEG=ON"
+    "-DWITH_CODEC_SNDFILE=ON"
+    "-DWITH_SYSTEM_OPENJPEG=ON"
+    "-DWITH_JACK=ON"
     "-DWITH_INSTALL_PORTABLE=OFF"
     "-DPYTHON_LIBRARY=python${python.majorVersion}m"    
     "-DPYTHON_LIBPATH=${python}/lib"