guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/18: gnu: Add r-tiff.


From: guix-commits
Subject: 06/18: gnu: Add r-tiff.
Date: Mon, 7 Jan 2019 12:44:12 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit db084d79ea6fd82bab850cb953a96cac5dce723b
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Jan 4 17:29:34 2019 +0100

    gnu: Add r-tiff.
    
    * gnu/packages/cran.scm (r-tiff): New variable.
---
 gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 2cca57d..4531417 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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]