From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH] gnu: xorg-server: Enable Xephyr. Date: Mon, 22 Aug 2016 22:23:02 +0200 Message-ID: <20160822202302.11716-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49025) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbvkp-0006Oz-Jc for guix-devel@gnu.org; Mon, 22 Aug 2016 16:23:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bbvkk-0000Q7-Kh for guix-devel@gnu.org; Mon, 22 Aug 2016 16:23:31 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:36631) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbvkj-0000MQ-CS for guix-devel@gnu.org; Mon, 22 Aug 2016 16:23:26 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/xorg.scm (xorg-server)[inputs]: Add xcb-util, xcb-util-image, xcb-util-keysyms, xcb-util-renderutil, xcb-util-wm. [arguments]: Add '--enable-kdrive' and '--enable-xephyr' configure-flags. --- gnu/packages/xorg.scm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index b24e437..9c87602 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5088,7 +5088,13 @@ over Xlib, including: ("xkbcomp" ,xkbcomp) ("xkeyboard-config" ,xkeyboard-config) ("xtrans" ,xtrans) - ("zlib" ,zlib))) + ("zlib" ,zlib) + ;; Inputs for Xephyr + ("xcb-util" ,xcb-util) + ("xcb-util-image" ,xcb-util-image) + ("xcb-util-keysyms" ,xcb-util-keysyms) + ("xcb-util-renderutil" ,xcb-util-renderutil) + ("xcb-util-wm" ,xcb-util-wm))) (native-inputs `(("python" ,python-minimal-wrapper) ("pkg-config" ,pkg-config))) @@ -5106,7 +5112,10 @@ over Xlib, including: "/bin") ;; For the log file, etc. - "--localstatedir=/var") + "--localstatedir=/var" + ;; For sddm + "--enable-kdrive" + "--enable-xephyr") #:phases (alist-cons-before 'configure 'pre-configure -- 2.9.0