gnu: Add eog-plugins.

* gnu/packages/gnome.scm (eog-plugins): New variable.
This commit is contained in:
Ludovic Courtès 2017-06-24 23:17:12 +02:00
parent 55b7bbd87f
commit 0c3f8cb8e8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 45 additions and 0 deletions

View File

@ -3650,6 +3650,51 @@ supports playlists, song ratings, and any codecs installed through gstreamer.")
supports image conversion, rotation, and slideshows.") supports image conversion, rotation, and slideshows.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public eog-plugins
;; Note: EOG looks for its plugins (via libpeas) in ~/.local as well as
;; $DATA/lib/eog/plugins, where DATA is one of the entries in
;; $XDG_DATA_DIRS. Thus, for EOG to find these, you have to have
;; 'XDG_DATA_DIRS' appropriately set.
(package
(name "eog-plugins")
(version "3.25.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
(version-major+minor version) "/"
name "-" version ".tar.xz"))
(sha256
(base32
"0an04z8v83qa6j950rbwdzf1s86y7zd8h1r4p2x36fwbkk1m617q"))))
(build-system gnu-build-system)
(home-page "https://wiki.gnome.org/Apps/EyeOfGnome/Plugins")
(synopsis "Extensions for the Eye of GNOME image viewer")
(native-inputs
`(("pkg-config" ,pkg-config)
("gettext" ,gnu-gettext)))
(inputs
`(("eog" ,eog)
("glib" ,glib)
("gtk+" ,gtk+)
("libpeas" ,libpeas)
("libexif" ,libexif)
("libchamplain" ,libchamplain)))
(description
"This package provides plugins for the Eye of GNOME (EOG) image viewer,
notably:
@itemize
@item @dfn{EXIF Display}, which displays camera (EXIF) information;
@item @dfn{Map}, which displays a map of where the picture was taken on the
side panel;
@item @dfn{Slideshow Shuffle}, to shuffle images in slideshow mode.
@end itemize\n")
;; XXX: eog-postasa-plugin-resources.c (which we don't build) contains a
;; long suspicious byte stream that goes to a
;; ".gresource.eog_postasa_plugin" ELF section.
(license license:gpl2+)))
(define-public libgudev (define-public libgudev
(package (package
(name "libgudev") (name "libgudev")