2013-09-25 23:25:55 +02:00
|
|
|
{ stdenv, fetchurl, libsoup, graphicsmagick, SDL, json_glib
|
2011-10-21 16:43:18 +02:00
|
|
|
, GConf, atk, cairo, cmake, curl, dbus_glib, exiv2, glib
|
2016-01-09 01:24:28 +01:00
|
|
|
, libgnome_keyring, gtk3, ilmbase, intltool, lcms, lcms2
|
2011-10-21 16:43:18 +02:00
|
|
|
, lensfun, libXau, libXdmcp, libexif, libglade, libgphoto2, libjpeg
|
2016-01-09 01:24:28 +01:00
|
|
|
, libpng, libpthreadstubs, librsvg, libtiff, libxcb
|
2013-09-25 23:25:55 +02:00
|
|
|
, openexr, pixman, pkgconfig, sqlite, bash, libxslt, openjpeg
|
2016-01-09 01:24:28 +01:00
|
|
|
, mesa, lua, pugixml, colord, colord-gtk, libxshmfence, libxkbcommon
|
|
|
|
, epoxy, at_spi2_core, libwebp, libsecret, wrapGAppsHook, gnome3
|
|
|
|
}:
|
2011-10-21 16:43:18 +02:00
|
|
|
|
|
|
|
assert stdenv ? glibc;
|
2011-01-08 22:55:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-01-09 01:24:28 +01:00
|
|
|
version = "2.0.0";
|
2011-01-08 22:55:33 +01:00
|
|
|
name = "darktable-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-12-09 18:50:22 +01:00
|
|
|
url = "https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz";
|
2016-01-09 01:24:28 +01:00
|
|
|
sha256 = "1cbwvzqn3158cy7r499rdwipx7fpb30lrrvh6jy5a4xvpcjzbwnl";
|
2011-01-08 22:55:33 +01:00
|
|
|
};
|
|
|
|
|
2011-10-21 16:43:18 +02:00
|
|
|
buildInputs =
|
2016-01-09 01:24:28 +01:00
|
|
|
[ GConf atk cairo cmake curl dbus_glib exiv2 glib libgnome_keyring gtk3
|
2011-10-21 16:43:18 +02:00
|
|
|
ilmbase intltool lcms lcms2 lensfun libXau libXdmcp libexif
|
2016-01-09 01:24:28 +01:00
|
|
|
libglade libgphoto2 libjpeg libpng libpthreadstubs
|
2012-11-27 14:32:22 +01:00
|
|
|
librsvg libtiff libxcb openexr pixman pkgconfig sqlite libxslt
|
2016-01-09 01:24:28 +01: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
|
2011-10-21 16:43:18 +02:00
|
|
|
];
|
2011-01-08 22:55:33 +01:00
|
|
|
|
2011-07-31 12:49:19 +02:00
|
|
|
cmakeFlags = [
|
2013-09-25 23:25:55 +02:00
|
|
|
"-DBUILD_USERMANUAL=False"
|
2011-07-31 12:49:19 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Virtual lighttable and darkroom for photographers";
|
2014-12-09 18:50:22 +01:00
|
|
|
homepage = http://www.darktable.org;
|
2011-07-31 12:49:19 +02:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2014-12-09 18:50:22 +01:00
|
|
|
maintainers = [ maintainers.goibhniu maintainers.rickynils maintainers.flosse ];
|
2011-01-08 22:55:33 +01:00
|
|
|
};
|
|
|
|
}
|