mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
3954780bfb
commit
47ba3f7d25
1 changed files with 45 additions and 42 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue