gnu: Add r-tiff.

* gnu/packages/cran.scm (r-tiff): New variable.
master
Ricardo Wurmus 2019-01-04 17:29:34 +01:00 committed by Ricardo Wurmus
parent 44b0c5b5b1
commit db084d79ea
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 0 deletions

View File

@ -8563,3 +8563,28 @@ mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
The FFT functions have a parameter that allows them to not return the
redundant complex conjugate when the input is real data.")
(license license:gpl2+)))
(define-public r-tiff
(package
(name "r-tiff")
(version "0.1-5")
(source
(origin
(method url-fetch)
(uri (cran-uri "tiff" version))
(sha256
(base32
"0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
(build-system r-build-system)
(inputs
`(("libtiff" ,libtiff)
("libjpeg" ,libjpeg)
("zlib" ,zlib)))
(home-page "http://www.rforge.net/tiff/")
(synopsis "Read and write TIFF images")
(description
"This package provides an easy and simple way to read, write and display
bitmap images stored in the TIFF format. It can read and write both files and
in-memory raw vectors.")
;; Either of these two license versions.
(license (list license:gpl2 license:gpl3))))