gnu: mate: Depend on gnome-keyring only on supported systems.

This lets us build Mate on i686-linux.

* gnu/packages/mate.scm (mate)[inputs]: Add GNOME-KEYRING
conditionally.
This commit is contained in:
Ludovic Courtès 2022-11-21 23:27:38 +01:00
parent 3954780bfb
commit 47ba3f7d25
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1490,6 +1490,10 @@ used to bring up authentication dialogs.")
(native-inputs (list desktop-file-utils))
(inputs
;; TODO: Add more packages
(append (if (or (%current-target-system)
(supported-package? gnome-keyring))
(list gnome-keyring)
'())
(list at-spi2-core
atril
caja
@ -1499,7 +1503,6 @@ used to bring up authentication dialogs.")
eom
font-abattis-cantarell
glib-networking
gnome-keyring
gvfs
hicolor-icon-theme
libmatekbd
@ -1531,7 +1534,7 @@ used to bring up authentication dialogs.")
pulseaudio
shared-mime-info
yelp
zenity))
zenity)))
(propagated-inputs
;; Default font that applications such as IceCat require.
(list font-dejavu))