mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, opencv, zlib
|
|
, libxml2, freetype, libjpeg, libtiff, swig, openexr
|
|
, ilmbase, boost165
|
|
, withPython ? true, python35
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "yafaray-core";
|
|
version = "3.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YafaRay";
|
|
repo = "Core";
|
|
rev = "v${version}";
|
|
sha256 = "0ipkrgn5siad6y8naw1pgxkxas70l09g97vabyfbx1k67xrr4ldp";
|
|
};
|
|
|
|
preConfigure = ''
|
|
NIX_CFLAGS_COMPILE+=" -isystem ${ilmbase.dev}/include/OpenEXR"
|
|
'';
|
|
|
|
buildInputs = [
|
|
cmake pkgconfig boost165 opencv zlib libxml2 freetype libjpeg libtiff
|
|
swig openexr ilmbase
|
|
] ++ stdenv.lib.optional withPython python35;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A free, open source raytracer";
|
|
homepage = "http://www.yafaray.org";
|
|
maintainers = with maintainers; [ hodapp ];
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|
|
|
|
# TODO: Add optional Ruby support
|
|
# TODO: Add Qt support? (CMake looks for it, but what for?)
|