about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/yafaray-core/default.nix
blob: a02a97739bad3a9dd98a14a0694829cacc9e4bb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchFromGitHub, cmake, pkgconfig, opencv, zlib
, libxml2, freetype, libjpeg, libtiff, swig, openexr
, ilmbase, boost165
, withPython ? true, python3
}:

stdenv.mkDerivation rec {

    pname = "yafaray-core";
    version = "3.4.4";

    src = fetchFromGitHub {
      owner  = "YafaRay";
      repo   = "Core";
      rev    = "v${version}";
      sha256 = "140vnaihz09rdvp0mqgrs26b3a2fv5wm49ar6817p4qklfx71l0g";
    };

    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 python3;

    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?)