diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-04 17:29:34 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-07 18:44:04 +0100 |
commit | db084d79ea6fd82bab850cb953a96cac5dce723b (patch) | |
tree | 27fb8ebb3885f68e14b11b7f1c5caa500474b289 /gnu | |
parent | 44b0c5b5b19c6432fab7c54f5e3a71472cc496f9 (diff) | |
download | patches-db084d79ea6fd82bab850cb953a96cac5dce723b.tar patches-db084d79ea6fd82bab850cb953a96cac5dce723b.tar.gz |
gnu: Add r-tiff.
* gnu/packages/cran.scm (r-tiff): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 2cca57d714..4531417f83 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -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)))) |