guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 4/7] gnu: Add xcb-util-cursor.


From: Eric Bavier
Subject: Re: [PATCH 4/7] gnu: Add xcb-util-cursor.
Date: Sun, 23 Aug 2015 11:43:27 -0500

On Mon, 17 Aug 2015 22:06:03 +0200
Eric Dvorsak <address@hidden> wrote:

> * 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 © 2014, 2015 Mark H Weaver <address@hidden>
>  ;;; Copyright © 2014 Eric Bavier <address@hidden>
>  ;;; Copyright © 2015 Ludovic Courtès <address@hidden>
> +;;; Copyright © 2015 Eric Dvorsak <address@hidden>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -2033,6 +2034,35 @@ legacy X clients.")
>      (license license:x11)))
>  
>  
> +(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")

I moved this package nearer to the other "xcb-util-*" packages,
adjusted the description slightly and pushed.

Thanks,
`~Eric



reply via email to

[Prev in Thread] Current Thread [Next in Thread]