TEMPORARY_HACK: gnu: xfce4-session: On MIPS, remove polkit from inputs.

* gnu/packages/xfce.scm (xfce4-session)[inputs]: Remove polkit when
targetting MIPS.
This commit is contained in:
Mark H Weaver 2016-03-18 03:44:49 -04:00
parent 01b29b4c25
commit 4e2cc3ec56
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015 Sou Bunnbu <iyzsong@gmail.com>
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016 Florian Paul Schmidt <mista.tapas@gmx.net>
;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
@ -490,7 +490,10 @@ (define-public xfce4-session
(inputs
`(("iceauth" ,iceauth)
("upower" ,upower)
("polkit" ,polkit)
,@(if (not (string-prefix? "mips" (or (%current-target-system)
(%current-system))))
`(("polkit" ,polkit))
'())
("libsm" ,libsm)
("libwnck" ,libwnck-2)
("libxfce4ui" ,libxfce4ui)))