From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dvorsak Subject: Re: [PATCH 4/7] gnu: Add xcb-util-cursor. Date: Tue, 18 Aug 2015 18:16:08 +0200 Message-ID: <87zj1o608n.fsf@dvorsak.fr> References: <1439780737-14209-1-git-send-email-eric@dvorsak.fr> <1439780737-14209-4-git-send-email-eric@dvorsak.fr> <877fot5tz8.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57184) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRjYw-0005Eu-Rf for guix-devel@gnu.org; Tue, 18 Aug 2015 12:16:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRjYt-0007zp-Jv for guix-devel@gnu.org; Tue, 18 Aug 2015 12:16:34 -0400 Received: from 16.mo1.mail-out.ovh.net ([178.33.104.224]:52632) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRjYt-0007zC-EW for guix-devel@gnu.org; Tue, 18 Aug 2015 12:16:31 -0400 Received: from mail644.ha.ovh.net (gw6.ovh.net [213.251.189.206]) by mo1.mail-out.ovh.net (Postfix) with SMTP id A86D2FFACD1 for ; Tue, 18 Aug 2015 18:16:28 +0200 (CEST) In-reply-to: <877fot5tz8.fsf@netris.org> 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: Mark H Weaver Cc: guix-devel@gnu.org Mark H Weaver writes: > 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? There is no description on freedesktop.org and in the readme either. Should I just add the description of libxcursor itself ? Which is "Xorg Cursor management library" for both the synospis and the description > > Mark Eric