gnu: Add r-fpeek.

* gnu/packages/cran.scm (r-fpeek): New variable.
This commit is contained in:
Ricardo Wurmus 2021-12-03 16:46:29 +01:00
parent 15404ff19b
commit dcf857e486
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -632,6 +632,28 @@ (define-public r-fingerprint
;; 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")