gnu: gnome-shell: Adjust to new #:disallowed-references convention.

* gnu/packages/gnome.scm (gnome-shell)[arguments]: List gexp-inputs in
  #:disallowed-references.
This commit is contained in:
Ludovic Courtès 2021-03-29 10:37:47 +02:00
parent 9b8632fcec
commit f27a7c18b6
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net> ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
;;; Copyright © 2014, 2016, 2020 Eric Bavier <bavier@posteo.net> ;;; Copyright © 2014, 2016, 2020 Eric Bavier <bavier@posteo.net>
;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch> ;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch>
@ -8472,9 +8472,10 @@ properties, screen resolution, and other GNOME parameters.")
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
`(#:glib-or-gtk? #t `(#:glib-or-gtk? #t
#:disallowed-references ((,glib "bin") #:disallowed-references ,(list (gexp-input glib "bin")
,inkscape ,libxslt (gexp-input inkscape)
,ruby-sass) (gexp-input libxslt)
(gexp-input ruby-sass))
#:configure-flags #:configure-flags
(list "-Dsystemd=false" (list "-Dsystemd=false"
;; Otherwise, the RUNPATH will lack the final path component. ;; Otherwise, the RUNPATH will lack the final path component.