2017-10-04 22:50:14 +01:00
|
|
|
{ fetchurl, stdenv, gettext, pkgconfig, itstool, libxml2, libjpeg, gnome3
|
2018-02-25 02:23:58 +00:00
|
|
|
, shared-mime-info, wrapGAppsHook, librsvg, libexif, gobjectIntrospection }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
2017-12-13 09:16:10 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext itstool wrapGAppsHook gobjectIntrospection ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
buildInputs = with gnome3;
|
2017-10-04 22:50:14 +01:00
|
|
|
[ libxml2 libjpeg gtk glib libpeas librsvg
|
2018-02-25 02:23:58 +00:00
|
|
|
gsettings-desktop-schemas shared-mime-info adwaita-icon-theme
|
|
|
|
gnome-desktop libexif dconf ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/EyeOfGnome;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
description = "GNOME image viewer";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
}
|