rawtherapee: 4.0 -> 4.2

This commit is contained in:
Matthias Herrmann
2016-06-25 09:16:12 +02:00
parent 125ffff089
commit 392448b5d3
2 changed files with 67 additions and 10 deletions
@@ -1,21 +1,26 @@
{ stdenv, fetchurl, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau
, libXdmcp, lcms2, libiptcdata, libcanberra, fftw, expat
{ stdenv, fetchFromGitHub, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau
, libXdmcp, lcms2, libiptcdata, libcanberra, fftw, expat, pcre, libsigcxx
, mercurial # Not really needed for anything, but it fails if it does not find 'hg'
}:
stdenv.mkDerivation rec {
name = "rawtherapee-4.0.10";
name = "rawtherapee-4.2";
src = fetchurl {
url = http://rawtherapee.googlecode.com/files/rawtherapee-4.0.10.tar.xz;
sha256 = "1ibsdm2kqpw796rcdihnnp67vx0wm1d1bnlzq269r9p01w5s102g";
src = fetchFromGitHub {
owner = "Beep6581";
repo = "RawTherapee";
rev = "4.2";
sha256 = "1v4px239vlmk9l8wbzlvlyni4ns12icxmgfz21m86jkd10pj5dgr";
};
buildInputs = [ pkgconfig gtk cmake pixman libpthreadstubs gtkmm libXau libXdmcp
lcms2 libiptcdata mercurial libcanberra fftw expat ];
lcms2 libiptcdata mercurial libcanberra fftw expat pcre libsigcxx ];
# Disable the use of the RAWZOR propietary libraries
cmakeFlags = [ "-DWITH_RAWZOR=OFF" ];
patchPhase = ''
patch -p1 < ${./sigc++_fix.patch}
'';
NIX_CFLAGS_COMPILE = "-std=gnu++11 -Wno-deprecated-declarations -Wno-unused-result";
enableParallelBuilding = true;
@@ -23,7 +28,7 @@ stdenv.mkDerivation rec {
description = "RAW converter and digital photo processing software";
homepage = http://www.rawtherapee.com/;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with stdenv.lib.maintainers; [viric jcumming];
maintainers = with stdenv.lib.maintainers; [viric jcumming mahe];
platforms = with stdenv.lib.platforms; linux;
};
}