gnome3.gnome-photos: clean up expression

This commit is contained in:
Jan Tojnar 2019-08-23 01:53:08 +02:00
parent bd3d9788cc
commit 4a558194cb
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,10 +1,34 @@
{ stdenv, gettext, fetchurl, libxml2, libgdata { stdenv
, pkgconfig, gtk3, glib, tracker, tracker-miners , fetchurl
, itstool, gegl, babl, libdazzle, gfbgraph, grilo-plugins , babl
, grilo, gnome-online-accounts , dbus
, desktop-file-utils, wrapGAppsHook , desktop-file-utils
, gnome3, gdk-pixbuf, gexiv2, geocode-glib , dleyna-renderer
, dleyna-renderer, dbus, meson, ninja, python3, gsettings-desktop-schemas }: , gdk-pixbuf
, gegl
, geocode-glib
, gettext
, gexiv2
, gfbgraph
, glib
, gnome-online-accounts
, gnome3
, grilo
, grilo-plugins
, gsettings-desktop-schemas
, gtk3
, itstool
, libdazzle
, libgdata
, libxml2
, meson
, ninja
, pkgconfig
, python3
, tracker
, tracker-miners
, wrapGAppsHook
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-photos"; pname = "gnome-photos";
@ -18,18 +42,37 @@ stdenv.mkDerivation rec {
# doCheck = true; # doCheck = true;
nativeBuildInputs = [ nativeBuildInputs = [
pkgconfig gettext itstool meson ninja libxml2 desktop-file-utils
desktop-file-utils wrapGAppsHook python3 gettext
itstool
libxml2
meson
ninja
pkgconfig
python3
wrapGAppsHook
]; ];
buildInputs = [ buildInputs = [
gtk3 glib gegl babl libgdata libdazzle babl
gsettings-desktop-schemas
gdk-pixbuf gnome3.adwaita-icon-theme
gfbgraph grilo-plugins grilo
gnome-online-accounts tracker
gexiv2 geocode-glib dleyna-renderer
tracker-miners # For 'org.freedesktop.Tracker.Miner.Files' GSettings schema
dbus dbus
dleyna-renderer
gdk-pixbuf
gegl
geocode-glib
gexiv2
gfbgraph
glib
gnome-online-accounts
gnome3.adwaita-icon-theme
grilo
grilo-plugins
gsettings-desktop-schemas
gtk3
libdazzle
libgdata
tracker
tracker-miners # For 'org.freedesktop.Tracker.Miner.Files' GSettings schema
]; ];
postPatch = '' postPatch = ''
@ -45,10 +88,10 @@ stdenv.mkDerivation rec {
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Photos;
description = "Access, organize and share your photos"; description = "Access, organize and share your photos";
maintainers = gnome3.maintainers; homepage = https://wiki.gnome.org/Apps/Photos;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = gnome3.maintainers;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }