diff options
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e8728a9513..7761135b28 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1305,6 +1305,26 @@ applications. That is, compute distances and related measures for angular (longitude/latitude) locations.") (license license:gpl3+))) +(define-public r-jpeg + (package + (name "r-jpeg") + (version "0.1-8.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "jpeg" version)) + (sha256 + (base32 + "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x")))) + (build-system r-build-system) + (inputs `(("libjpeg" ,libjpeg))) + (home-page "http://www.rforge.net/jpeg/") + (synopsis "Read and write JPEG images with R") + (description "This package provides a way to read, write and display +bitmap images stored in the JPEG format with R. It can read and write both +files and in-memory raw vectors.") + (license license:gpl2+))) + (define-public r-ggmap (package (name "r-ggmap") |