From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dvorsak Subject: [PATCH 4/7] gnu: Add xcb-util-cursor. Date: Mon, 17 Aug 2015 22:06:03 +0200 Message-ID: <1439841966-12052-4-git-send-email-eric@dvorsak.fr> References: <1439841966-12052-1-git-send-email-eric@dvorsak.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=y Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRQfm-0000P9-Ip for guix-devel@gnu.org; Mon, 17 Aug 2015 16:06:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRQfj-0004Qg-8e for guix-devel@gnu.org; Mon, 17 Aug 2015 16:06:22 -0400 Received: from 13.mo1.mail-out.ovh.net ([178.33.253.128]:60763) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRQfi-0004Q8-8v for guix-devel@gnu.org; Mon, 17 Aug 2015 16:06:19 -0400 Received: from mail620.ha.ovh.net (gw6.ovh.net [213.251.189.206]) by mo1.mail-out.ovh.net (Postfix) with SMTP id 5CD37FFA938 for ; Mon, 17 Aug 2015 22:06:17 +0200 (CEST) In-Reply-To: <1439841966-12052-1-git-send-email-eric@dvorsak.fr> 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: guix-devel@gnu.org * gnu/packages/xorg.scm (xcb-util-cursor): New variable. --- gnu/packages/xorg.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index a9ecc1e..c5813a0 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -3,6 +3,7 @@ ;;; Copyright =C2=A9 2014, 2015 Mark H Weaver ;;; Copyright =C2=A9 2014 Eric Bavier ;;; Copyright =C2=A9 2015 Ludovic Court=C3=A8s +;;; Copyright =C2=A9 2015 Eric Dvorsak ;;; ;;; This file is part of GNU Guix. ;;; @@ -2033,6 +2034,35 @@ legacy X clients.") (license license:x11))) =20 =20 +(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.") + (license + ; expat license with added clause regarding advertising + (license:non-copyleft + "file://COPYING" + "See COPYING in the distribution.")))) + + (define-public xcb-proto (package (name "xcb-proto") --=20 2.4.3