guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add r-fpeek.


From: guix-commits
Subject: 01/03: gnu: Add r-fpeek.
Date: Sat, 4 Dec 2021 06:46:08 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit dcf857e4864ea356a245df9dcfd67fdb9fd0217f
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Dec 3 16:46:29 2021 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 5f12cc5..8d585f0 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -632,6 +632,28 @@ Currently handlers are provided for CDK, MOE and BCI 
fingerprint data.")
     ;; Any version of the GPL
     (license (list license:gpl2+ license:gpl3+))))
 
+(define-public r-fpeek
+  (package
+    (name "r-fpeek")
+    (version "0.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "fpeek" version))
+       (sha256
+        (base32 "0kv46g21ndxchg3q8ynq7hjjkh6i2zlc21axn5y1jjzigrw047ii"))))
+    (properties `((upstream-name . "fpeek")))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-rcpp" ,r-rcpp)))
+    (home-page "https://github.com/davidgohel/fpeek";)
+    (synopsis "Check text files content at a glance")
+    (description
+     "This package provides tools to help working with text files.  It can
+return the number of lines; print the first and last lines; convert encoding.
+Operations are made without reading the entire file before starting, resulting
+in good performances with large files.")
+    (license license:expat)))
+
 (define-public r-ggalluvial
   (package
    (name "r-ggalluvial")



reply via email to

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