me
/
guix
Archived
1
0
Fork 0

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.
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
1 changed files with 45 additions and 42 deletions

View File

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