nixpkgs/pkgs/applications/graphics/rawtherapee/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

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