2016-08-22 15:39:33 +02:00
|
|
|
{ stdenv, lib, fetchurl, boost, cmake, ffmpeg, gettext, glew
|
|
|
|
, ilmbase, libXi, libX11, libjpeg, libpng, libsamplerate, libsndfile
|
2013-03-28 01:00:22 +01:00
|
|
|
, libtiff, mesa, openal, opencolorio, openexr, openimageio, openjpeg, python
|
2016-08-22 15:39:33 +02:00
|
|
|
, zlib, fftw, opensubdiv, freetype
|
2015-06-27 09:17:52 +02:00
|
|
|
, jackaudioSupport ? false, libjack2
|
2015-08-19 07:25:25 +02:00
|
|
|
, cudaSupport ? false, cudatoolkit
|
2014-12-23 18:16:47 +01:00
|
|
|
, colladaSupport ? true, opencollada
|
2013-03-28 01:00:22 +01:00
|
|
|
}:
|
2010-05-08 23:25:56 +02:00
|
|
|
|
2014-07-15 23:30:55 +02:00
|
|
|
with lib;
|
|
|
|
|
2010-05-09 00:33:20 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-08 19:51:48 +02:00
|
|
|
name = "blender-2.77a";
|
2007-12-01 19:05:26 +01:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2010-05-09 00:33:20 +02:00
|
|
|
url = "http://download.blender.org/source/${name}.tar.gz";
|
2016-04-08 19:51:48 +02:00
|
|
|
sha256 = "0rswx2n52wjr4jpvg1a6mir5das2i752brjzigmm8rhayl0glw1p";
|
2007-12-01 19:05:26 +01:00
|
|
|
};
|
|
|
|
|
2014-05-19 21:29:56 +02:00
|
|
|
buildInputs =
|
2016-08-22 15:39:33 +02:00
|
|
|
[ boost cmake ffmpeg gettext glew ilmbase libXi libX11 freetype
|
2014-05-19 21:29:56 +02:00
|
|
|
libjpeg libpng libsamplerate libsndfile libtiff mesa openal
|
2016-08-22 15:39:33 +02:00
|
|
|
opencolorio openexr openimageio openjpeg python zlib fftw
|
2015-10-12 15:51:04 +02:00
|
|
|
(opensubdiv.override { inherit cudaSupport; })
|
2014-08-09 10:31:55 +02:00
|
|
|
]
|
2015-06-27 09:17:52 +02:00
|
|
|
++ optional jackaudioSupport libjack2
|
2015-08-19 07:25:25 +02:00
|
|
|
++ optional cudaSupport cudatoolkit
|
2014-12-23 18:16:47 +01:00
|
|
|
++ optional colladaSupport opencollada;
|
2014-05-19 21:29:56 +02:00
|
|
|
|
2014-07-15 22:52:23 +02:00
|
|
|
postUnpack =
|
|
|
|
''
|
|
|
|
substituteInPlace */doc/manpage/blender.1.py --replace /usr/bin/python ${python}/bin/python3
|
|
|
|
'';
|
|
|
|
|
2014-05-19 21:29:56 +02:00
|
|
|
cmakeFlags =
|
2014-12-23 18:16:47 +01:00
|
|
|
[ "-DWITH_MOD_OCEANSIM=ON"
|
2014-05-19 21:29:56 +02:00
|
|
|
"-DWITH_CODEC_FFMPEG=ON"
|
|
|
|
"-DWITH_CODEC_SNDFILE=ON"
|
|
|
|
"-DWITH_INSTALL_PORTABLE=OFF"
|
2015-01-09 16:57:38 +01:00
|
|
|
"-DWITH_FFTW3=ON"
|
|
|
|
"-DWITH_SDL=ON"
|
|
|
|
"-DWITH_GAMEENGINE=ON"
|
|
|
|
"-DWITH_OPENCOLORIO=ON"
|
2016-08-22 15:39:33 +02:00
|
|
|
"-DWITH_SYSTEM_OPENJPEG=ON"
|
2015-03-15 23:35:33 +01:00
|
|
|
"-DWITH_PLAYER=ON"
|
2015-10-12 15:51:04 +02:00
|
|
|
"-DWITH_OPENSUBDIV=ON"
|
2014-05-19 21:29:56 +02:00
|
|
|
"-DPYTHON_LIBRARY=python${python.majorVersion}m"
|
|
|
|
"-DPYTHON_LIBPATH=${python}/lib"
|
|
|
|
"-DPYTHON_INCLUDE_DIR=${python}/include/python${python.majorVersion}m"
|
|
|
|
"-DPYTHON_VERSION=${python.majorVersion}"
|
2016-08-22 15:39:33 +02:00
|
|
|
"-DWITH_PYTHON_INSTALL=OFF"
|
|
|
|
"-DWITH_PYTHON_INSTALL_NUMPY=OFF"
|
2014-07-15 23:30:55 +02:00
|
|
|
]
|
2014-08-09 10:31:55 +02:00
|
|
|
++ optional jackaudioSupport "-DWITH_JACK=ON"
|
2014-12-23 18:16:47 +01:00
|
|
|
++ optional cudaSupport "-DWITH_CYCLES_CUDA_BINARIES=ON"
|
|
|
|
++ optional colladaSupport "-DWITH_OPENCOLLADA=ON";
|
2008-05-14 15:39:20 +02:00
|
|
|
|
2016-09-01 18:11:21 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR -I${python}/include/${python.libPrefix}m";
|
2012-09-19 22:41:15 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2007-12-01 19:05:26 +01:00
|
|
|
|
2014-02-18 22:11:39 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-05-08 23:25:56 +02:00
|
|
|
description = "3D Creation/Animation/Publishing System";
|
|
|
|
homepage = http://www.blender.org;
|
|
|
|
# They comment two licenses: GPLv2 and Blender License, but they
|
|
|
|
# say: "We've decided to cancel the BL offering for an indefinite period."
|
2014-02-18 22:11:39 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-03-25 16:42:50 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2014-02-18 22:11:39 +01:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2010-05-08 23:25:56 +02:00
|
|
|
};
|
2007-12-01 19:05:26 +01:00
|
|
|
}
|