From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH 07/11] gnu: Add lxinput. Date: Mon, 23 Jan 2017 18:55:55 +0000 Message-ID: <20170123185559.15596-8-contact.ng0@cryptolab.net> References: <20170123185559.15596-1-contact.ng0@cryptolab.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52167) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVjnX-0000GD-Vf for guix-devel@gnu.org; Mon, 23 Jan 2017 13:57:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVjnX-0008Bz-15 for guix-devel@gnu.org; Mon, 23 Jan 2017 13:57:00 -0500 Received: from aibo.runbox.com ([91.220.196.211]:36268) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVjnW-0008BF-PT for guix-devel@gnu.org; Mon, 23 Jan 2017 13:56:58 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cVjnV-0003Ko-Gb for guix-devel@gnu.org; Mon, 23 Jan 2017 19:56:57 +0100 In-Reply-To: <20170123185559.15596-1-contact.ng0@cryptolab.net> 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: ng0 From: ng0 * gnu/packages/lxde.scm (lxinput): New variable. --- gnu/packages/lxde.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index e825cf9b5..063345f21 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -287,4 +287,29 @@ menu spec-compliant desktop menus for LXDE.") (home-page "http://lxde.org") (license license:gpl2+))) +(define-public lxinput + (package + (name "lxinput") + (version "0.3.5") + (source + (origin + (method url-fetch) + (uri (string-append "https://downloads.sourceforge.net/lxde/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "123f3yn4rp1w5b3n5aj3ad9snkxab29qkrs7bcvf5bx4cn57g3sf")))) + (build-system gnu-build-system) + (inputs + `(("gtk+-2" ,gtk+-2))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (synopsis "Tool for mouse and keyboard configuration in LXDE") + (description + "Lxinput provides a small program to configure keyboard and mouse +in LXDE.") + (home-page "http://lxde.org") + (license license:gpl2+))) + ;;; lxde.scm ends here -- 2.11.0