gnu: lollypop: Peel off duplicate wrapper.

* gnu/packages/gnome.scm (lollypop)[arguments]: Take down some at-ats
with proper module imports and prefixing.  Remove the redundant
‘wrap-glib-or-gtk’ phaseis already run by the MESON-BUILD-SYSTEM.
This commit is contained in:
Tobias Geerinckx-Rice 2020-04-02 14:39:09 +02:00
parent 401d28e433
commit 7a9543d77e
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -8887,10 +8887,15 @@ (define-public lollypop
(base32 "1ng9492k8754vlqggbfsyzbmfdx4w17fzc4ad21fr92710na0w5a")))) (base32 "1ng9492k8754vlqggbfsyzbmfdx4w17fzc4ad21fr92710na0w5a"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
`(#:imported-modules ((guix build python-build-system) `(#:imported-modules
,@%meson-build-system-modules) (,@%meson-build-system-modules
(guix build python-build-system))
#:modules
((guix build meson-build-system)
((guix build python-build-system) #:prefix python:)
(guix build utils))
#:glib-or-gtk? #t #:glib-or-gtk? #t
#:tests? #f ; no test suite #:tests? #f ; no test suite
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'install 'wrap-program (add-after 'install 'wrap-program
@ -8901,9 +8906,7 @@ (define-public lollypop
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))) `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
#t)) #t))
(add-after 'install 'wrap-python (add-after 'install 'wrap-python
(@@ (guix build python-build-system) wrap)) (assoc-ref python:%standard-phases 'wrap)))))
(add-after 'install 'wrap-glib-or-gtk
(@@ (guix build glib-or-gtk-build-system) wrap-all-programs)))))
(native-inputs (native-inputs
`(("intltool" ,intltool) `(("intltool" ,intltool)
("itstool" ,itstool) ("itstool" ,itstool)