From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 3/9] gnu: Add qtgamepad. Date: Mon, 9 Jan 2017 12:03:42 +0200 Message-ID: <20170109100347.29913-5-efraim@flashner.co.il> References: <20170109100347.29913-1-efraim@flashner.co.il> Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39633) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQWoF-000121-Az for guix-devel@gnu.org; Mon, 09 Jan 2017 05:04:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cQWo9-0006m0-NU for guix-devel@gnu.org; Mon, 09 Jan 2017 05:04:11 -0500 Received: from flashner.co.il ([178.62.234.194]:41495) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQWo9-0006lk-Fy for guix-devel@gnu.org; Mon, 09 Jan 2017 05:04:05 -0500 Received: from localhost (85.64.232.168.dynamic.barak-online.net [85.64.232.168]) by flashner.co.il (Postfix) with ESMTPSA id 974E1400EC for ; Mon, 9 Jan 2017 10:04:04 +0000 (UTC) In-Reply-To: <20170109100347.29913-1-efraim@flashner.co.il> 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/qt.scm (qtgamepad): New variable. --- gnu/packages/qt.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 5f21be66c..23872c1ef 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -55,6 +55,7 @@ #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) #:use-module (gnu packages ruby) + #:use-module (gnu packages sdl) #:use-module (gnu packages tls) #:use-module (gnu packages xdisorg) #:use-module (gnu packages xorg) @@ -948,6 +949,30 @@ developers using C++ or QML, a CSS & JavaScript like= language.") `(("qtbase" ,qtbase) ("qtdeclarative" ,qtdeclarative))))) =20 +(define-public qtgamepad + (package (inherit qtsvg) + (name "qtgamepad") + (version "5.7.1") + (source (origin + (method url-fetch) + (uri (string-append "https://download.qt.io/official_releas= es/qt/" + (version-major+minor version) "/" versi= on + "/submodules/" name "-opensource-src-" + version ".tar.xz")) + (sha256 + (base32 + "10lijbsg9xx5ddbbjymdgl41nxz99yn1qgiww2kkggxwwdjj2axv")))= ) + (native-inputs + `(("perl" ,perl) + ("pkg-config" ,pkg-config))) + (inputs + `(("fontconfig" ,fontconfig) + ("freetype" ,freetype) + ("libxrender" ,libxrender) + ("sdl2" ,sdl2) + ("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative))))) + (define-public python-sip (package (name "python-sip") --=20 2.11.0