mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 03:59:38 -05:00
gnu: Add r-ragg.
* gnu/packages/cran.scm (r-ragg): New variable.
This commit is contained in:
parent
4f72a349f1
commit
3d3003bade
1 changed files with 33 additions and 0 deletions
|
@ -26650,3 +26650,36 @@ (define-public r-textshaping
|
|||
is a low-level utility package mainly for graphic devices that expands upon
|
||||
the font tool-set provided by the @code{systemfonts} package.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-ragg
|
||||
(package
|
||||
(name "r-ragg")
|
||||
(version "0.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "ragg" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0443dhfi7bjfpap041vrnslw3ql3vpsxx18raz2w9nfdb7id8lsc"))))
|
||||
(properties `((upstream-name . "ragg")))
|
||||
(build-system r-build-system)
|
||||
(inputs
|
||||
`(("freetype" ,freetype)
|
||||
("libjpeg" ,libjpeg-turbo)
|
||||
("libpng" ,libpng)
|
||||
("libtiff" ,libtiff)
|
||||
("zlib" ,zlib)))
|
||||
(propagated-inputs
|
||||
`(("r-systemfonts" ,r-systemfonts)
|
||||
("r-textshaping" ,r-textshaping)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "https://ragg.r-lib.org")
|
||||
(synopsis "Graphic devices based on AGG")
|
||||
(description
|
||||
"Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D
|
||||
drawing library. The ragg package provides a set of graphic devices based on
|
||||
AGG to use as alternative to the raster devices provided through the
|
||||
@code{grDevices} package.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue