mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add r-tiff.
* gnu/packages/cran.scm (r-tiff): New variable.
This commit is contained in:
parent
44b0c5b5b1
commit
db084d79ea
1 changed files with 25 additions and 0 deletions
|
@ -8563,3 +8563,28 @@ (define-public r-fftwtools
|
|||
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))))
|
||||
|
|
Loading…
Reference in a new issue