From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 4/8] gnu: freedesktop: Add libinput-minimal. Date: Fri, 29 Jul 2016 10:23:53 +0200 Message-ID: <20160729082357.17501-4-david@craven.ch> References: <20160729082357.17501-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55451) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bT36H-0006Cq-IE for guix-devel@gnu.org; Fri, 29 Jul 2016 04:24:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bT36F-0002Jt-F2 for guix-devel@gnu.org; Fri, 29 Jul 2016 04:24:56 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:50481) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bT36E-0002HJ-86 for guix-devel@gnu.org; Fri, 29 Jul 2016 04:24:55 -0400 In-Reply-To: <20160729082357.17501-1-david@craven.ch> 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 Cc: David Craven * gnu/packages/freedesktop.scm: New variable. --- gnu/packages/freedesktop.scm | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 458331d..fb7717b 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -86,7 +86,7 @@ freedesktop.org project.") (source (origin (method url-fetch) (uri (string-append "https://freedesktop.org/software/libinput/" - name "-" version ".tar.xz")) + "libinput-" version ".tar.xz")) (sha256 (base32 "085lcxy111j8r1lwyghsc6zrysqh0vg8xip5axxsdl8r8n3i1vvn")))) @@ -97,8 +97,8 @@ freedesktop.org project.") `(("libudev" ,eudev))) ; required by libinput.pc (inputs `(("libevdev" ,libevdev) - ("mtdev" ,mtdev) - ("libwacom" ,libwacom))) + ("libwacom" ,libwacom) + ("mtdev" ,mtdev))) (home-page "https://www.freedesktop.org/wiki/Software/libinput/") (synopsis "Input devices handling library") (description @@ -106,6 +106,16 @@ freedesktop.org project.") other applications that need to directly deal with input devices.") (license license:x11))) +(define-public libinput-minimal + (package (inherit libinput) + (name "libinput-minimal") + (inputs + `(("libevdev" ,libevdev) + ("mtdev" ,mtdev))) + (arguments + `(#:configure-flags + '("--disable-libwacom"))))) + (define-public libxdg-basedir (package (name "libxdg-basedir") -- 2.9.0