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.
parent
3954780bfb
commit
47ba3f7d25
|
@ -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))
|
||||||
|
|
Reference in New Issue