civodul pushed a commit to branch wip-build-systems-gexp
in repository guix.

commit 54dbbb10d4abca263d340b57a8322ed9287582aa
Author: Ludovic Courtès <[email protected]>
AuthorDate: Mon Mar 29 10:37:47 2021 +0200

    gnu: gnome-shell: Adjust to new #:disallowed-references convention.
    
    * gnu/packages/gnome.scm (gnome-shell)[arguments]: List gexp-inputs in
      #:disallowed-references.
---
 gnu/packages/gnome.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 36e3346..5c70c01 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2015 Andreas Enge <[email protected]>
-;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès 
<[email protected]>
+;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès 
<[email protected]>
 ;;; Copyright © 2014 Ian Denhardt <[email protected]>
 ;;; Copyright © 2014, 2016, 2020 Eric Bavier <[email protected]>
 ;;; Copyright © 2014, 2015 Federico Beffa <[email protected]>
@@ -8358,9 +8358,10 @@ properties, screen resolution, and other GNOME 
parameters.")
     (build-system meson-build-system)
     (arguments
      `(#:glib-or-gtk? #t
-       #:disallowed-references ((,glib "bin")
-                                ,inkscape ,libxslt
-                                ,ruby-sass)
+       #:disallowed-references ,(list (gexp-input glib "bin")
+                                      (gexp-input inkscape)
+                                      (gexp-input libxslt)
+                                      (gexp-input ruby-sass))
        #:configure-flags
        (list "-Dsystemd=false"
              ;; Otherwise, the RUNPATH will lack the final path component.

Reply via email to