2021-01-18 22:50:56 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, pixman, libpthreadstubs, gtkmm3, libXau
|
2018-02-24 18:23:58 -08:00
|
|
|
, libXdmcp, lcms2, libiptcdata, libcanberra-gtk3, fftw, expat, pcre, libsigcxx, wrapGAppsHook
|
2019-11-16 11:19:40 -08:00
|
|
|
, lensfun, librsvg
|
2010-01-17 09:49:35 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-06 06:16:16 -08:00
|
|
|
version = "5.8";
|
2019-11-16 11:19:40 -08:00
|
|
|
pname = "rawtherapee";
|
2016-09-22 04:11:04 -07:00
|
|
|
|
2016-06-14 11:42:45 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Beep6581";
|
|
|
|
repo = "RawTherapee";
|
2017-09-03 02:07:13 -07:00
|
|
|
rev = version;
|
2020-02-06 06:16:16 -08:00
|
|
|
sha256 = "0d644s4grfia6f3k6y0byd5pwajr12kai2kc280yxi8v3w1b12ik";
|
2010-01-17 09:49:35 -08:00
|
|
|
};
|
2016-09-22 04:11:04 -07:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
|
2017-09-14 12:24:37 -07:00
|
|
|
|
2017-01-27 02:28:24 -08:00
|
|
|
buildInputs = [
|
2017-12-10 00:43:26 -08:00
|
|
|
pixman libpthreadstubs gtkmm3 libXau libXdmcp
|
2019-11-16 11:19:40 -08:00
|
|
|
lcms2 libiptcdata libcanberra-gtk3 fftw expat pcre libsigcxx lensfun librsvg
|
2016-10-10 08:24:49 -07:00
|
|
|
];
|
|
|
|
|
2016-09-24 23:01:27 -07:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DPROC_TARGET_NUMBER=2"
|
2017-09-03 02:07:13 -07:00
|
|
|
"-DCACHE_NAME_SUFFIX=\"\""
|
2016-09-24 23:01:27 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
CMAKE_CXX_FLAGS = "-std=c++11 -Wno-deprecated-declarations -Wno-unused-result";
|
2016-06-14 11:42:45 -07:00
|
|
|
|
2016-09-24 23:01:27 -07:00
|
|
|
postUnpack = ''
|
|
|
|
echo "set(HG_VERSION $version)" > $sourceRoot/ReleaseInfo.cmake
|
|
|
|
'';
|
2010-01-17 09:49:35 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "RAW converter and digital photo processing software";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.rawtherapee.com/";
|
2021-01-15 05:21:58 -08:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
maintainers = with lib.maintainers; [ jcumming mahe ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2010-01-17 09:49:35 -08:00
|
|
|
};
|
|
|
|
}
|