2013-09-25 21:25:55 +00:00
|
|
|
{ stdenv, fetchurl, libsoup, graphicsmagick, SDL, json_glib
|
2011-10-21 14:43:18 +00:00
|
|
|
, GConf, atk, cairo, cmake, curl, dbus_glib, exiv2, glib
|
2016-01-09 00:24:28 +00:00
|
|
|
, libgnome_keyring, gtk3, ilmbase, intltool, lcms, lcms2
|
2011-10-21 14:43:18 +00:00
|
|
|
, lensfun, libXau, libXdmcp, libexif, libglade, libgphoto2, libjpeg
|
2016-01-09 00:24:28 +00:00
|
|
|
, libpng, libpthreadstubs, librsvg, libtiff, libxcb
|
2016-06-07 18:07:16 +00:00
|
|
|
, openexr, osm-gps-map, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg
|
2016-01-09 00:24:28 +00:00
|
|
|
, mesa, lua, pugixml, colord, colord-gtk, libxshmfence, libxkbcommon
|
|
|
|
, epoxy, at_spi2_core, libwebp, libsecret, wrapGAppsHook, gnome3
|
|
|
|
}:
|
2011-10-21 14:43:18 +00:00
|
|
|
|
|
|
|
assert stdenv ? glibc;
|
2011-01-08 21:55:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-07-13 23:29:17 +00:00
|
|
|
version = "2.2.5";
|
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";
|
2017-07-13 23:29:17 +00:00
|
|
|
sha256 = "10gjzd4irxhladh4jyss9kgp627k8vgx2divipsb33pp6cms80z3";
|
2011-01-08 21:55:33 +00:00
|
|
|
};
|
|
|
|
|
2011-10-21 14:43:18 +00:00
|
|
|
buildInputs =
|
2016-01-09 00:24:28 +00:00
|
|
|
[ GConf atk cairo cmake curl dbus_glib exiv2 glib libgnome_keyring gtk3
|
2011-10-21 14:43:18 +00:00
|
|
|
ilmbase intltool lcms lcms2 lensfun libXau libXdmcp libexif
|
2016-01-09 00:24:28 +00:00
|
|
|
libglade libgphoto2 libjpeg libpng libpthreadstubs
|
2012-11-27 13:32:22 +00:00
|
|
|
librsvg libtiff libxcb openexr pixman pkgconfig sqlite libxslt
|
2016-01-09 00:24:28 +00:00
|
|
|
libsoup graphicsmagick SDL json_glib openjpeg mesa lua pugixml
|
|
|
|
colord colord-gtk libxshmfence libxkbcommon epoxy at_spi2_core
|
|
|
|
libwebp libsecret wrapGAppsHook gnome3.adwaita-icon-theme
|
2016-06-07 18:07:16 +00:00
|
|
|
osm-gps-map
|
2011-10-21 14:43:18 +00:00
|
|
|
];
|
2011-01-08 21:55:33 +00:00
|
|
|
|
2011-07-31 10:49:19 +00:00
|
|
|
cmakeFlags = [
|
2013-09-25 21:25:55 +00:00
|
|
|
"-DBUILD_USERMANUAL=False"
|
2011-07-31 10:49:19 +00: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+=(
|
|
|
|
--prefix LD_LIBRARY_PATH ":" "$out/lib/darktable"
|
|
|
|
)
|
|
|
|
'';
|
2017-01-06 05:46:33 +00:00
|
|
|
|
2011-07-31 10:49:19 +00: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 10:49:19 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2014-12-09 17:50:22 +00:00
|
|
|
maintainers = [ maintainers.goibhniu maintainers.rickynils maintainers.flosse ];
|
2011-01-08 21:55:33 +00:00
|
|
|
};
|
|
|
|
}
|