[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/100: gnu: Add gnome-music.
From: |
guix-commits |
Subject: |
07/100: gnu: Add gnome-music. |
Date: |
Wed, 8 Jul 2020 03:36:33 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit c1d81c1a371c5d81f7dc27ddb5b81b125e4ac246
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri May 22 14:50:21 2020 -0400
gnu: Add gnome-music.
* gnu/packages/gnome.scm (gnome-music): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 5f6aa64..986329b 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -259,6 +259,68 @@ 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-music
+ (package
+ (name "gnome-music")
+ (version "3.34.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1r5sfw5cbd6qqh27lzhblazir0bfi3k7nqppw66qw990isqm5psy"))))
+ (build-system meson-build-system)
+ (arguments
+ `(#:glib-or-gtk? #t
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'wrap-gnome-music
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let*
+ ((out (assoc-ref outputs "out"))
+ (pylib (string-append out "/lib/python"
+ ,(version-major+minor
+ (package-version python))
+ "/site-packages")))
+ (wrap-program (string-append out "/bin/gnome-music")
+ `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))
+ `("GST_PLUGIN_SYSTEM_PATH" = (,(getenv
"GST_PLUGIN_SYSTEM_PATH")))
+ `("GRL_PLUGIN_PATH" = (,(getenv "GRL_PLUGIN_PATH")))
+ `("PYTHONPATH" = (,(getenv "PYTHONPATH") ,pylib))))
+ #t)))))
+ (native-inputs
+ `(("desktop-file-utils" ,desktop-file-utils)
+ ("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("gtk+:bin" ,gtk+ "bin")
+ ("itstools" ,itstool)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("gnome-online-accounts:lib" ,gnome-online-accounts "lib")
+ ("grilo" ,grilo)
+ ("grilo-plugins" ,grilo-plugins)
+ ("gst-plugins-base" ,gst-plugins-base)
+ ("gstreamer" ,gstreamer)
+ ("gvfs" ,gvfs)
+ ("libdazzle" ,libdazzle)
+ ("libmediaart" ,libmediaart)
+ ("libsoup" ,libsoup)
+ ("pycairo" ,python-pycairo)
+ ("pygobject" ,python-pygobject)
+ ("tracker" ,tracker)
+ ("tracker-miners" ,tracker-miners)))
+ (synopsis "Simple music player for GNOME desktop")
+ (description "GNOME Music is the new GNOME music playing application that
+aims to combine an elegant and immersive browsing experience with simple
+and straightforward controls.")
+ (home-page "https://wiki.gnome.org/Apps/Music")
+ (license license:gpl2+)))
+
(define-public portablexdr
(package
(name "portablexdr")
- branch wip-desktop created (now 7c1fcbb), guix-commits, 2020/07/08
- 01/100: gnu: Add krb5-auth-dialog., guix-commits, 2020/07/08
- 02/100: gnu: Add tepl., guix-commits, 2020/07/08
- 04/100: gnu: Add malcontent., guix-commits, 2020/07/08
- 05/100: gnu: Add portablexdr., guix-commits, 2020/07/08
- 06/100: gnu: Add libxmlb., guix-commits, 2020/07/08
- 07/100: gnu: Add gnome-music.,
guix-commits <=
- 08/100: gnu: Add gnome-photos., guix-commits, 2020/07/08
- 12/100: gnu: at-spi2-atk: Update to 2.34.2., guix-commits, 2020/07/08
- 15/100: gnu: font-cantarell: Update package definition., guix-commits, 2020/07/08
- 03/100: gnu: Add libglib-testing., guix-commits, 2020/07/08
- 09/100: gnu: adwaita-icon-theme: Update to 3.36.1., guix-commits, 2020/07/08
- 10/100: gnu: appstream-glib: Update package definition., guix-commits, 2020/07/08
- 11/100: gnu: at-spi2-core: Update package definition., guix-commits, 2020/07/08
- 14/100: gnu: google-brotli: Update package definition., guix-commits, 2020/07/08
- 17/100: gnu: clutter-gtk: Update package definition., guix-commits, 2020/07/08
- 16/100: gnu: clutter: Update to 1.26.4., guix-commits, 2020/07/08