2019-03-15 23:01:17 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, gtk3
|
|
|
|
, libexif
|
|
|
|
, libgphoto2
|
|
|
|
, libwebp
|
|
|
|
, libsoup
|
|
|
|
, libxml2
|
|
|
|
, vala
|
|
|
|
, sqlite
|
|
|
|
, webkitgtk
|
|
|
|
, pkgconfig
|
|
|
|
, gnome3
|
|
|
|
, gst_all_1
|
|
|
|
, libgudev
|
|
|
|
, libraw
|
|
|
|
, glib
|
2020-07-29 21:39:00 -07:00
|
|
|
, glib-networking
|
2019-03-15 23:01:17 -07:00
|
|
|
, json-glib
|
|
|
|
, gcr
|
|
|
|
, libgee
|
|
|
|
, gexiv2
|
|
|
|
, librest
|
|
|
|
, gettext
|
|
|
|
, desktop-file-utils
|
2019-05-22 04:03:39 -07:00
|
|
|
, gdk-pixbuf
|
2019-03-15 23:01:17 -07:00
|
|
|
, librsvg
|
|
|
|
, wrapGAppsHook
|
|
|
|
, gobject-introspection
|
|
|
|
, itstool
|
|
|
|
, libgdata
|
|
|
|
, libchamplain
|
2019-04-16 17:38:26 -07:00
|
|
|
, gsettings-desktop-schemas
|
2019-03-15 23:01:17 -07:00
|
|
|
, python3
|
|
|
|
}:
|
2013-07-14 06:14:37 -07:00
|
|
|
|
2017-12-18 20:15:28 -08:00
|
|
|
# for dependencies see https://wiki.gnome.org/Apps/Shotwell/BuildingAndInstalling
|
2013-07-14 06:14:37 -07:00
|
|
|
|
2019-03-15 23:01:17 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-02 16:39:58 -08:00
|
|
|
pname = "shotwell";
|
2020-08-30 17:52:07 -07:00
|
|
|
version = "0.31.2";
|
2013-07-14 06:14:37 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-15 23:01:17 -07:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-08-30 17:52:07 -07:00
|
|
|
sha256 = "0ywzr6vgcz8yy60v0jp55na9lgqi4dbh2vakfphkcml1gpah0r2l";
|
2013-07-14 06:14:37 -07:00
|
|
|
};
|
|
|
|
|
2017-12-18 20:15:28 -08:00
|
|
|
nativeBuildInputs = [
|
2019-03-15 23:01:17 -07:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
vala
|
|
|
|
pkgconfig
|
|
|
|
itstool
|
|
|
|
gettext
|
|
|
|
desktop-file-utils
|
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
gobject-introspection
|
2017-12-18 20:15:28 -08:00
|
|
|
];
|
2015-07-30 16:30:15 -07:00
|
|
|
|
2017-12-18 20:15:28 -08:00
|
|
|
buildInputs = [
|
2019-03-15 23:01:17 -07:00
|
|
|
gtk3
|
|
|
|
libexif
|
|
|
|
libgphoto2
|
|
|
|
libwebp
|
|
|
|
libsoup
|
|
|
|
libxml2
|
|
|
|
sqlite
|
|
|
|
webkitgtk
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
libgee
|
|
|
|
libgudev
|
|
|
|
gexiv2
|
2019-04-16 17:38:26 -07:00
|
|
|
gsettings-desktop-schemas
|
2019-03-15 23:01:17 -07:00
|
|
|
libraw
|
|
|
|
json-glib
|
|
|
|
glib
|
2020-07-29 21:39:00 -07:00
|
|
|
glib-networking
|
2019-05-22 04:03:39 -07:00
|
|
|
gdk-pixbuf
|
2019-03-15 23:01:17 -07:00
|
|
|
librsvg
|
|
|
|
librest
|
|
|
|
gcr
|
|
|
|
gnome3.adwaita-icon-theme
|
|
|
|
libgdata
|
|
|
|
libchamplain
|
2017-12-18 20:15:28 -08:00
|
|
|
];
|
2015-07-30 16:30:15 -07:00
|
|
|
|
2018-09-04 17:52:24 -07:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x build-aux/meson/postinstall.py # patchShebangs requires executable file
|
|
|
|
patchShebangs build-aux/meson/postinstall.py
|
2015-01-08 01:26:49 -08:00
|
|
|
'';
|
|
|
|
|
2018-03-02 16:39:58 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "none";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-07-14 06:14:37 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Popular photo organizer for the GNOME desktop";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Shotwell";
|
2014-03-19 13:10:15 -07:00
|
|
|
license = licenses.lgpl21Plus;
|
2016-05-17 04:57:28 -07:00
|
|
|
maintainers = with maintainers; [domenkozar];
|
2013-07-14 06:14:37 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2014-03-19 13:10:15 -07:00
|
|
|
}
|