From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCH 4/7] gnu: Add xcb-util-cursor. Date: Mon, 17 Aug 2015 20:19:07 -0400 Message-ID: <877fot5tz8.fsf@netris.org> References: <1439780737-14209-1-git-send-email-eric@dvorsak.fr> <1439780737-14209-4-git-send-email-eric@dvorsak.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47948) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRUcs-0006rN-RR for guix-devel@gnu.org; Mon, 17 Aug 2015 20:19:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRUcp-0001F2-JZ for guix-devel@gnu.org; Mon, 17 Aug 2015 20:19:38 -0400 Received: from world.peace.net ([50.252.239.5]:55267) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRUcp-0001C1-Fz for guix-devel@gnu.org; Mon, 17 Aug 2015 20:19:35 -0400 In-Reply-To: <1439780737-14209-4-git-send-email-eric@dvorsak.fr> (Eric Dvorsak's message of "Mon, 17 Aug 2015 05:05:34 +0200") 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: Eric Dvorsak Cc: guix-devel@gnu.org Eric Dvorsak writes: > +(define-public xcb-util-cursor > + (package > + (name "xcb-util-cursor") > + (version "0.1.2") > + (source (origin > + (method url-fetch) > + (uri (string-append "http://xcb.freedesktop.org/dist/" > + "xcb-util-cursor-" version ".tar.gz")) > + (sha256 > + (base32 > + "0bm0mp99abdfb6v4v60hq3msvk67b2x9ml3kbx5y2g18xdhm3rdr")))) > + (build-system gnu-build-system) > + (native-inputs > + `(("m4" ,m4) > + ("pkg-config" ,pkg-config))) > + (inputs > + `(("libxcb" ,libxcb) > + ("xcb-util-renderutil" ,xcb-util-renderutil) > + ("xcb-util-image" ,xcb-util-image))) > + (home-page "http://cgit.freedesktop.org/xcb/util-cursor/") > + (synopsis "Port of libxcursor") > + (description "Port of libxcursor.") The synopsis and description seem like stubs. Can you make them better? Mark