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

44 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, cmake, pixman, libpthreadstubs, gtkmm3, libXau
, libXdmcp, lcms2, libiptcdata, libcanberra_gtk3, fftw, expat, pcre, libsigcxx, wrapGAppsHook
}:
stdenv.mkDerivation rec {
2017-09-03 09:07:13 +00:00
version = "5.2";
2016-09-25 06:01:27 +00:00
name = "rawtherapee-" + version;
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;
sha256 = "0i3cr3335bw8yxxzn6kcdx6ccinlnxzrdbgl3ld1kym1w2n5449k";
};
2016-09-22 11:11:04 +00:00
2017-01-27 10:28:24 +00:00
buildInputs = [
pkgconfig cmake pixman libpthreadstubs gtkmm3 libXau libXdmcp
lcms2 libiptcdata libcanberra_gtk3 fftw expat pcre libsigcxx
];
nativeBuildInputs = [ wrapGAppsHook ];
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
'';
enableParallelBuilding = true;
meta = {
description = "RAW converter and digital photo processing software";
homepage = http://www.rawtherapee.com/;
license = stdenv.lib.licenses.gpl3Plus;
2016-09-22 11:11:04 +00:00
maintainers = with stdenv.lib.maintainers; [ viric jcumming mahe the-kenny ];
platforms = with stdenv.lib.platforms; linux;
};
}