This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch core-updates-frozen
in repository guix.

The following commit(s) were added to refs/heads/core-updates-frozen by this 
push:
     new dab4ce0  gnu: mcg: Use GUIX_PYTHONPATH.
dab4ce0 is described below

commit dab4ce01044b2d960da7375735e9543a259f97d3
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Nov 18 22:11:15 2021 +0000

    gnu: mcg: Use GUIX_PYTHONPATH.
    
    * gnu/packages/mpd.scm (mcg)[arguments]: Use GUIX_PYTHONPATH in the wrapper;
    and remove trailing #T while we're at it.
---
 gnu/packages/mpd.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index b9da295..de5a7d3 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2016, 2018, 2019, 2020 Leo Famulari <[email protected]>
 ;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2019 Evan Straw <[email protected]>
-;;; Copyright © 2020 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2020, 2021 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2020 Lars-Dominik Braun <[email protected]>
 ;;; Copyright © 2020, 2021 Simon Streit <[email protected]>
 ;;; Copyright © 2021 Noah Evans <[email protected]>
@@ -506,9 +506,8 @@ artists along with albumart.")
              (let ((prog (string-append (assoc-ref outputs "out")
                                         "/bin/mcg")))
                (wrap-program prog
-                 `("PYTHONPATH" = (,(getenv "PYTHONPATH")))
-                 `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))
-               #t)))
+                 `("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH")))
+                 `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))
          (add-after 'wrap-program 'glib-or-gtk-wrap
            (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
     (synopsis "Covergrid for the MPD")

Reply via email to