gnu: rhythmbox: Update to 3.4.
* gnu/packages/gnome.scm (rhythmbox): Update to 3.4. [arguments]: Add PYTHONPATH environment variable to 'wrap-program'.
This commit is contained in:
parent
735b8db6ca
commit
349cef585d
|
@ -3264,7 +3264,7 @@ which can read a large number of file formats.")
|
||||||
(define-public rhythmbox
|
(define-public rhythmbox
|
||||||
(package
|
(package
|
||||||
(name "rhythmbox")
|
(name "rhythmbox")
|
||||||
(version "3.2.1")
|
(version "3.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -3272,7 +3272,7 @@ which can read a large number of file formats.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0f3radhlji7rxl760yl2vm49fvfslympxrpm8497acbmbd7wlhxz"))))
|
"1347747m90aiz47wny1f8rdk5195qf2ph0554c6y91711sm951gg"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
|
@ -3290,11 +3290,13 @@ which can read a large number of file formats.")
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(let ((out (assoc-ref outputs "out"))
|
||||||
(gi-typelib-path (getenv "GI_TYPELIB_PATH"))
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH"))
|
||||||
(gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))
|
(gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))
|
||||||
(grl-plugin-path (getenv "GRL_PLUGIN_PATH")))
|
(grl-plugin-path (getenv "GRL_PLUGIN_PATH"))
|
||||||
|
(python-path (getenv "PYTHONPATH")))
|
||||||
(wrap-program (string-append out "/bin/rhythmbox")
|
(wrap-program (string-append out "/bin/rhythmbox")
|
||||||
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))
|
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))
|
||||||
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))
|
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))
|
||||||
`("GRL_PLUGIN_PATH" ":" prefix (,grl-plugin-path))))
|
`("GRL_PLUGIN_PATH" ":" prefix (,grl-plugin-path))
|
||||||
|
`("PYTHONPATH" ":" prefix (,python-path))))
|
||||||
#t)))))
|
#t)))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("dconf" ,dconf)))
|
`(("dconf" ,dconf)))
|
||||||
|
@ -3340,7 +3342,6 @@ which can read a large number of file formats.")
|
||||||
;; TODO:
|
;; TODO:
|
||||||
;; * libgpod
|
;; * libgpod
|
||||||
;; * mx
|
;; * mx
|
||||||
;; * webkit
|
|
||||||
("brasero" ,brasero)))
|
("brasero" ,brasero)))
|
||||||
(home-page "https://wiki.gnome.org/Apps/Rhythmbox")
|
(home-page "https://wiki.gnome.org/Apps/Rhythmbox")
|
||||||
(synopsis "Music player for GNOME")
|
(synopsis "Music player for GNOME")
|
||||||
|
|
Loading…
Reference in New Issue