summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2018-01-13 01:57:39 +0800
committeradisbladis <adis@blad.is>2018-01-13 04:03:37 +0800
commitcad14c782b15da7bb5b636a8bd70fee985905b40 (patch)
tree5749e44877774d25d6c570d26c67479927fbbe21 /pkgs/applications/graphics
parent08ab28b9a32254445e3fcf1b8ccb2bd68071bde4 (diff)
downloadnixpkgs-cad14c782b15da7bb5b636a8bd70fee985905b40.tar
nixpkgs-cad14c782b15da7bb5b636a8bd70fee985905b40.tar.gz
nixpkgs-cad14c782b15da7bb5b636a8bd70fee985905b40.tar.bz2
nixpkgs-cad14c782b15da7bb5b636a8bd70fee985905b40.tar.lz
nixpkgs-cad14c782b15da7bb5b636a8bd70fee985905b40.tar.xz
nixpkgs-cad14c782b15da7bb5b636a8bd70fee985905b40.tar.zst
nixpkgs-cad14c782b15da7bb5b636a8bd70fee985905b40.zip
luminanceHDR: 2.4.0 -> 2.5.1
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/luminance-hdr/default.nix17
1 files changed, 5 insertions, 12 deletions
diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix
index 30d34a88d90..867c0a55838 100644
--- a/pkgs/applications/graphics/luminance-hdr/default.nix
+++ b/pkgs/applications/graphics/luminance-hdr/default.nix
@@ -1,28 +1,21 @@
-{ stdenv, cmake, fetchurl, fetchpatch, pkgconfig, boost, exiv2, fftwFloat, gsl
+{ stdenv, cmake, fetchurl, pkgconfig, boost, exiv2, fftwFloat, gsl
 , ilmbase, lcms2, libraw, libtiff, openexr
-, qtbase, qtdeclarative, qttools, qtwebkit
+, qtbase, qtdeclarative, qttools, qtwebengine
 }:
 
 stdenv.mkDerivation rec {
-  name = "luminance-hdr-2.4.0";
+  name = "luminance-hdr-2.5.1";
 
   src = fetchurl {
     url = "mirror://sourceforge/qtpfsgui/${name}.tar.bz2";
-    sha256 = "00fldbcizrx8jcnjgq74n3zmbm27dxzl96fxa7q49689mfnlw08l";
+    sha256 = "15hnyk9yjkkc97dmnrg2ipfgwqxprlcyv2kyvbls4d54zc56x658";
   };
 
-  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.dev}/include/OpenEXR";
 
   buildInputs =
     [
-      qtbase qtdeclarative qttools qtwebkit
+      qtbase qtdeclarative qttools qtwebengine
       boost exiv2 fftwFloat gsl ilmbase lcms2 libraw libtiff openexr
     ];