[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/44: gnu: Add gnome-photos.
From: |
guix-commits |
Subject: |
08/44: gnu: Add gnome-photos. |
Date: |
Thu, 25 Jun 2020 08:20:48 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 79194e0000f1e682a366ecb4a3f9bed0c87e105f
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sat May 23 10:09:29 2020 -0400
gnu: Add gnome-photos.
* gnu/packages/gnome.scm (gnome-photos): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 986329b..ba5bbad 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -106,6 +106,7 @@
#:use-module (gnu packages game-development)
#:use-module (gnu packages gettext)
#:use-module (gnu packages ghostscript)
+ #:use-module (gnu packages gimp)
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnupg)
@@ -259,6 +260,76 @@ Desktop. It is designed to be as simple as possible and
has some unique
features to enable users to create their discs easily and quickly.")
(license license:gpl2+)))
+(define-public gnome-photos
+ (package
+ (name "gnome-photos")
+ (version "3.34.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "06ml5sf8xhpan410msqz085hmfc7082d368pb82yq646y9pcfn9w"))))
+ (build-system meson-build-system)
+ (arguments
+ `(#:glib-or-gtk? #t
+ #:configure-flags
+ (list "-Ddogtail=false" ; Not available
+ ;; Required for RUNPATH validation.
+ (string-append "-Dc_link_args=-Wl,-rpath="
+ (assoc-ref %outputs "out") "/lib/gnome-photos"))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'wrap-gnome-photos
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let*
+ ((out (assoc-ref outputs "out")))
+ (wrap-program (string-append out "/bin/gnome-photos")
+ `("GRL_PLUGIN_PATH" = (,(getenv "GRL_PLUGIN_PATH")))))
+ #t)))))
+ (native-inputs
+ `(("dbus" ,dbus)
+ ("desktop-file-utils" ,desktop-file-utils)
+ ("gettext" ,gettext-minimal)
+ ("git" ,git-minimal)
+ ("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+ ("gtk+:bin" ,gtk+ "bin")
+ ("itstool" ,itstool)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("babl" ,babl)
+ ("cairo" ,cairo)
+ ("gdk-pixbuf" ,gdk-pixbuf+svg)
+ ("gegl" ,gegl)
+ ("geocode-glib" ,geocode-glib)
+ ("gexiv2" ,gexiv2)
+ ("gnome-online-accounts" ,gnome-online-accounts)
+ ("gnome-online-miners" ,gnome-online-miners)
+ ("grilo" ,grilo)
+ ("grilo-plugins" ,grilo-plugins)
+ ("gtk+" ,gtk+)
+ ("libdazzle" ,libdazzle)
+ ("libgdata" ,libgdata)
+ ("libgfbgraph" ,gfbgraph)
+ ("libjpeg" ,libjpeg-turbo)
+ ("libpng" ,libpng)
+ ("librest" ,rest)
+ ("pygobject" ,python-pygobject)
+ ("tracker" ,tracker)
+ ("tracker-miners" ,tracker-miners)))
+ (synopsis "Access, organize and share your photos on GNOME desktop")
+ (description "GNOME Photos is a simple and elegant replacement for using a
+file manager to deal with photos. Enhance, crop and edit in a snap. Seamless
+cloud integration is offered through GNOME Online Accounts.")
+ (home-page "https://wiki.gnome.org/Apps/Photos")
+ (license license:gpl3+)))
+
(define-public gnome-music
(package
(name "gnome-music")
- branch wip-desktop created (now f6cdd17), guix-commits, 2020/06/25
- 01/44: gnu: Add krb5-auth-dialog., guix-commits, 2020/06/25
- 05/44: gnu: Add portablexdr., guix-commits, 2020/06/25
- 03/44: gnu: Add libglib-testing., guix-commits, 2020/06/25
- 04/44: gnu: Add malcontent., guix-commits, 2020/06/25
- 07/44: gnu: Add gnome-music., guix-commits, 2020/06/25
- 02/44: gnu: Add tepl., guix-commits, 2020/06/25
- 14/44: gnu: google-brotli: Update package definition., guix-commits, 2020/06/25
- 06/44: gnu: Add libxmlb., guix-commits, 2020/06/25
- 08/44: gnu: Add gnome-photos.,
guix-commits <=
- 09/44: gnu: adwaita-icon-theme: Update to 3.36.1., guix-commits, 2020/06/25
- 12/44: gnu: at-spi2-atk: Update to 2.34.2., guix-commits, 2020/06/25
- 13/44: gnu: atk: Update to 2.36.0., guix-commits, 2020/06/25
- 21/44: gnu: catch-framework2: Update to 2.3.0., guix-commits, 2020/06/25
- 22/44: gnu: Add ronn., guix-commits, 2020/06/25
- 17/44: gnu: clutter-gtk: Update package definition., guix-commits, 2020/06/25
- 23/44: gnu: Add nuspell., guix-commits, 2020/06/25
- 24/44: gnu: enchant-1.6: Update package definition., guix-commits, 2020/06/25
- 25/44: gnu: enchant: Update package definition., guix-commits, 2020/06/25
- 10/44: gnu: appstream-glib: Update package definition., guix-commits, 2020/06/25