guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 1/3] gnu: Add r-gdtools.


From: Ricardo Wurmus
Subject: Re: [PATCH 1/3] gnu: Add r-gdtools.
Date: Wed, 06 Jul 2016 07:27:42 +0200
User-agent: mu4e 0.9.16; emacs 24.5.1

Ben Woodcroft <address@hidden> writes:

> * gnu/packages/statistics.scm (r-gdtools): New variable.
> ---
>  gnu/packages/statistics.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
> index 73c30ae..24fbabe 100644
> --- a/gnu/packages/statistics.scm
> +++ b/gnu/packages/statistics.scm
> @@ -610,6 +610,30 @@ multidimensional conditioning system and a consistent 
> interface to map data to
>  aesthetic attributes.")
>      (license license:gpl2+)))
>  
> +(define-public r-gdtools
> +  (package
> +    (name "r-gdtools")
> +    (version "0.0.7")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (cran-uri "gdtools" version))
> +       (sha256
> +        (base32
> +         "1bmnf9d677f2jy8jnb9ymjz1qzm4yrd0qp6k5qrrly06jfffyx7g"))))
> +    (build-system r-build-system)
> +    (native-inputs
> +     `(("r-rcpp" ,r-rcpp)
> +       ("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("cairo" ,cairo)))
> +    (home-page "http://cran.r-project.org/web/packages/gdtools";)
> +    (synopsis "Utilities for graphical rendering")
> +    (description
> +     "The @code{gdtools} package provides functionalities to get font metrics
> +and to generate base64 encoded string from raster matrix.")
> +    (license license:gpl3)))
> +

Looks like this is indeed “GPLv3 only”.  The README states “The gdtools
package is licensed under the GPLv3.”

Without that notice it would have been GPLv3 or later, because that’s
how the license field in DESCRIPTION files is usually interpreted.

This patch looks good to me.  Thanks!

~~ Ricardo




reply via email to

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