summary refs log tree commit diff
path: root/pkgs/applications/graphics/luminance-hdr/default.nix
blob: 5e7835b3549960419c654eb8f143e0392be19844 (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
{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, qt5, boost, exiv2, fftwFloat, gsl
, ilmbase, lcms2, libraw, libtiff, openexr
}:

stdenv.mkDerivation rec {
  name = "luminance-hdr-2.4.0";

  src = fetchurl {
    url = "mirror://sourceforge/qtpfsgui/${name}.tar.bz2";
    sha256 = "00fldbcizrx8jcnjgq74n3zmbm27dxzl96fxa7q49689mfnlw08l";
  };

  patches = [(fetchpatch {
    name = "fix-qt53-build.diff";
    url = "http://anonscm.debian.org/cgit/pkg-phototools/luminance-hdr.git/"
      + "plain/debian/patches/51_qt5_printsupport.diff?id=00c869a860062dac181303f2c03a3513c0e210bc";
    sha256 = "0nzvfxd3ybxx61rj6vxcaaxfrsxrl9af3h8jj7pr3rncisnl9gkl";
  })];

  NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";

  buildInputs =
    [
      qt5.base qt5.declarative qt5.tools qt5.webkit
      boost exiv2 fftwFloat gsl ilmbase lcms2 libraw libtiff openexr
    ];

  nativeBuildInputs = [ cmake pkgconfig ];

  meta = with stdenv.lib; {
    homepage = http://qtpfsgui.sourceforge.net/;
    description = "A complete open source solution for HDR photography";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = [ maintainers.hrdinka ];
  };
}