summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/eog/default.nix
blob: b41be5c9d14c9e3db59559bb2a8a3ca276aa57b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchurl, stdenv, gettext, pkgconfig, itstool, libxml2, libjpeg, gnome3
, shared-mime-info, wrapGAppsHook, librsvg, libexif, gobjectIntrospection }:

stdenv.mkDerivation rec {
  inherit (import ./src.nix fetchurl) name src;

  nativeBuildInputs = [ pkgconfig gettext itstool wrapGAppsHook gobjectIntrospection ];

  buildInputs = with gnome3;
    [ libxml2 libjpeg gtk glib libpeas librsvg
      gsettings-desktop-schemas shared-mime-info adwaita-icon-theme
      gnome-desktop libexif dconf ];

  meta = with stdenv.lib; {
    homepage = https://wiki.gnome.org/Apps/EyeOfGnome;
    platforms = platforms.linux;
    description = "GNOME image viewer";
    maintainers = gnome3.maintainers;
  };
}