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