2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchurl, libsoup, graphicsmagick, json-glib, wrapGAppsHook
|
|
|
|
, cairo, cmake, ninja, curl, perl, llvm, desktop-file-utils, exiv2, glib
|
2017-04-22 01:00:45 +01:00
|
|
|
, ilmbase, gtk3, intltool, lcms2, lensfun, libX11, libexif, libgphoto2, libjpeg
|
|
|
|
, libpng, librsvg, libtiff, openexr, osm-gps-map, pkgconfig, sqlite, libxslt
|
|
|
|
, openjpeg, lua, pugixml, colord, colord-gtk, libwebp, libsecret, gnome3
|
2018-06-27 02:01:46 +01:00
|
|
|
, ocl-icd
|
2016-01-09 00:24:28 +00:00
|
|
|
}:
|
2011-10-21 15:43:18 +01:00
|
|
|
|
2011-01-08 21:55:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-08 18:44:43 +01:00
|
|
|
version = "2.4.4";
|
2011-01-08 21:55:33 +00:00
|
|
|
name = "darktable-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-12-09 17:50:22 +00:00
|
|
|
url = "https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz";
|
2018-06-08 18:44:43 +01:00
|
|
|
sha256 = "0kdhmiw4wxk2w9v2hms9yk8nl4ymdshnqyj0l07nivzzr6w20hwn";
|
2011-01-08 21:55:33 +00:00
|
|
|
};
|
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
nativeBuildInputs = [ cmake ninja llvm pkgconfig intltool perl desktop-file-utils wrapGAppsHook ];
|
2017-04-22 01:00:45 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cairo curl exiv2 glib gtk3 ilmbase lcms2 lensfun libX11 libexif
|
|
|
|
libgphoto2 libjpeg libpng librsvg libtiff openexr sqlite libxslt
|
2018-02-25 02:23:58 +00:00
|
|
|
libsoup graphicsmagick json-glib openjpeg lua pugixml
|
2017-04-22 01:00:45 +01:00
|
|
|
colord colord-gtk libwebp libsecret gnome3.adwaita-icon-theme
|
2018-06-27 02:01:46 +01:00
|
|
|
osm-gps-map ocl-icd
|
2017-04-22 01:00:45 +01:00
|
|
|
];
|
2018-06-27 02:01:46 +01:00
|
|
|
|
2011-07-31 11:49:19 +01:00
|
|
|
cmakeFlags = [
|
2013-09-25 22:25:55 +01:00
|
|
|
"-DBUILD_USERMANUAL=False"
|
2011-07-31 11:49:19 +01:00
|
|
|
];
|
|
|
|
|
2016-12-31 19:59:30 +00:00
|
|
|
# darktable changed its rpath handling in commit
|
|
|
|
# 83c70b876af6484506901e6b381304ae0d073d3c and as a result the
|
|
|
|
# binaries can't find libdarktable.so, so change LD_LIBRARY_PATH in
|
|
|
|
# the wrappers:
|
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(
|
2018-06-27 02:01:46 +01:00
|
|
|
--prefix LD_LIBRARY_PATH ":" "$out/lib/darktable:${ocl-icd}/lib"
|
2016-12-31 19:59:30 +00:00
|
|
|
)
|
|
|
|
'';
|
2017-01-06 05:46:33 +00:00
|
|
|
|
2011-07-31 11:49:19 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Virtual lighttable and darkroom for photographers";
|
2016-03-11 12:24:48 +00:00
|
|
|
homepage = https://www.darktable.org;
|
2011-07-31 11:49:19 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2017-12-25 11:13:24 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu rickynils flosse mrVanDalo ];
|
2011-01-08 21:55:33 +00:00
|
|
|
};
|
|
|
|
}
|