mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
2be463f7d8
Switch to GitHub source.
34 lines
939 B
Nix
34 lines
939 B
Nix
{ stdenv, cmake, fetchFromGitHub, pkgconfig, boost, exiv2, fftwFloat, gsl
|
|
, ilmbase, lcms2, libraw, libtiff, openexr
|
|
, qtbase, qtdeclarative, qttools, qtwebengine, eigen
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "luminance-hdr";
|
|
version = "2.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LuminanceHDR";
|
|
repo = "LuminanceHDR";
|
|
rev = "v.${version}";
|
|
sha256 = "1izmgjjp8mgyxv57sjjr05z7g7059ykb5wchlcn4wrnnb6aslnvn";
|
|
};
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR";
|
|
|
|
buildInputs = [
|
|
qtbase qtdeclarative qttools qtwebengine eigen
|
|
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 ];
|
|
};
|
|
}
|