nixpkgs/pkgs/applications/graphics/luminance-hdr/default.nix

32 lines
884 B
Nix
Raw Normal View History

2018-01-12 17:57:39 +00:00
{ stdenv, cmake, fetchurl, pkgconfig, boost, exiv2, fftwFloat, gsl
, ilmbase, lcms2, libraw, libtiff, openexr
2018-01-12 17:57:39 +00:00
, qtbase, qtdeclarative, qttools, qtwebengine
}:
stdenv.mkDerivation rec {
2018-01-12 17:57:39 +00:00
name = "luminance-hdr-2.5.1";
src = fetchurl {
url = "mirror://sourceforge/qtpfsgui/${name}.tar.bz2";
2018-01-12 17:57:39 +00:00
sha256 = "15hnyk9yjkkc97dmnrg2ipfgwqxprlcyv2kyvbls4d54zc56x658";
};
2016-09-01 16:11:21 +00:00
NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR";
2015-03-24 15:31:27 +00:00
buildInputs =
[
2018-01-12 17:57:39 +00:00
qtbase qtdeclarative qttools qtwebengine
2015-03-24 15:31:27 +00:00
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 ];
};
}