From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH] gnu: Add wxwidgets. Date: Sun, 22 Feb 2015 12:01:08 +0100 Message-ID: <20150222110108.GB29289@debian> References: <87pp92lup2.fsf@taylan.uni.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56600) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPUHj-0005CQ-M2 for guix-devel@gnu.org; Sun, 22 Feb 2015 06:01:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPUHg-0005qk-GJ for guix-devel@gnu.org; Sun, 22 Feb 2015 06:01:15 -0500 Received: from mout.kundenserver.de ([212.227.17.24]:51250) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPUHg-0005qf-7G for guix-devel@gnu.org; Sun, 22 Feb 2015 06:01:12 -0500 Content-Disposition: inline In-Reply-To: <87pp92lup2.fsf@taylan.uni.cx> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Taylan Ulrich =?utf-8?B?QmF5xLFybMSxL0thbW1lcg==?= Cc: guix-devel@gnu.org Hello, I am surprised we did not have it yet! I would use alphabetical ordering here: On Sun, Feb 22, 2015 at 12:18:49AM +0100, Taylan Ulrich Bayırlı/Kammer wrote: > + #:use-module (gnu packages) > + #:use-module (gnu packages gtk) > + #:use-module (gnu packages image) > + #:use-module (gnu packages pkg-config) > + #:use-module (gnu packages compression) > + #:use-module (gnu packages sdl) > + #:use-module (gnu packages xorg) > + #:use-module (gnu packages gl) > + #:use-module (gnu packages gstreamer) > + #:use-module (gnu packages databases)) and here: > + `(("gtk" ,gtk+) > + ("libjpeg" ,libjpeg) > + ("libtiff" ,libtiff) > + ("libmspack" ,libmspack) > + ("sdl" ,sdl) > + ("libsm" ,libsm) > + ("mesa" ,mesa) > + ("glu" ,glu) > + ;; XXX gstreamer-0.10 builds fail > + ;; ("gstreamer" ,gstreamer-0.10) > + )) > + (package > + (inherit wxwidgets) > + (version "2.8.12") > + (home-page "https://www.wxwidgets.org/") > + (synopsis "Widget toolkit for creating graphical user interfaces") > + (description > + "wxWidgets is a C++ library that lets developers create applications with > +a graphical user interface. It has language bindings for Python, Perl, Ruby > +and many other languages.") > + (license (list l:lgpl2.0+ (l:fsf-free "file://doc/license.txt"))))) All these are inherited, there is no need to add them again. Andreas