From 727f64108a673aa71b86ffd9e19bcc615276a01f Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Mon, 17 Aug 2020 04:43:32 -0400 Subject: gnu: gnome-music: Replace custom typelib and python wraps. * gnu/packages/gnome.scm (gnome-music) [arguments]: Modify. Signed-off-by: Danny Milosavljevic --- gnu/packages/gnome.scm | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index aa700022d6..a9826918a7 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -842,6 +842,7 @@ cloud integration is offered through GNOME Online Accounts.") (outputs '("out" "help")) (arguments `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + #:python? #t ; To wrap binaries #:tests? #f ; Tests require networking #:phases (modify-phases %standard-phases @@ -862,15 +863,9 @@ cloud integration is offered through GNOME Online Accounts.") #t))) (add-after 'move-help '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"))) + (let* ((out (assoc-ref outputs "out"))) (wrap-program (string-append out "/bin/gnome-music") - `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))) - `("GRL_PLUGIN_PATH" = (,(getenv "GRL_PLUGIN_PATH"))) - `("PYTHONPATH" = (,(getenv "PYTHONPATH") ,pylib)))) + `("GRL_PLUGIN_PATH" = (,(getenv "GRL_PLUGIN_PATH"))))) #t))))) (native-inputs `(("desktop-file-utils" ,desktop-file-utils) -- cgit 1.4.1