{ stdenv, intltool, fetchurl, exempi, libxml2 , pkgconfig, gtk3, glib, hicolor_icon_theme , makeWrapper, itstool, gegl, babl, lcms2 , desktop_file_utils, gmp , gnome3, librsvg, gdk_pixbuf, libexif }: stdenv.mkDerivation rec { name = "gnome-photos-3.12.1"; src = fetchurl { url = "mirror://gnome/sources/gnome-photos/3.12/${name}.tar.xz"; sha256 = "077cc6c2ae28680457fba435a22184e25f3a60a6fbe1901a75e42f6f6136538f"; }; doCheck = true; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; buildInputs = [ pkgconfig gtk3 glib intltool itstool gegl babl gnome3.gsettings_desktop_schemas makeWrapper gmp gdk_pixbuf gnome3.gnome_icon_theme librsvg exempi gnome3.gfbgraph gnome3.grilo-plugins gnome3.grilo gnome3.gnome_online_accounts gnome3.gnome_desktop lcms2 libexif gnome3.tracker libxml2 desktop_file_utils hicolor_icon_theme gnome3.gnome_icon_theme_symbolic ]; preFixup = '' substituteInPlace $out/bin/gnome-photos --replace gapplication "${glib}/bin/gapplication" for f in $out/bin/* $out/libexec/*; do wrapProgram "$f" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ --prefix GRL_PLUGIN_PATH : "${gnome3.grilo-plugins}/lib/grilo-0.2" \ --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" done rm $out/share/icons/hicolor/icon-theme.cache ''; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Photos; description = "Photos is an application to access, organize and share your photos with GNOME 3"; maintainers = with maintainers; [ lethalman ]; license = licenses.gpl2; platforms = platforms.linux; }; }