me
/
guix
Archived
1
0
Fork 0

gnu: Add r-eyelinker.

* gnu/packages/cran.scm (r-eyelinker): New variable.
master
Lars-Dominik Braun 2021-03-15 10:47:48 +01:00
parent 32603dbba9
commit 20fb147c9a
No known key found for this signature in database
GPG Key ID: 421377011A378446
1 changed files with 29 additions and 0 deletions

View File

@ -28016,3 +28016,32 @@ Application Program Interfaces (API)}.")
(description (description
"Tools for working with and comparing sets of points and intervals.") "Tools for working with and comparing sets of points and intervals.")
(license license:artistic2.0))) (license license:artistic2.0)))
(define-public r-eyelinker
(package
(name "r-eyelinker")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "eyelinker" version))
(sha256
(base32
"14rfcdxad9iazwd46q6bm8gg1ryh6s8kf7arj00hhb7xz3gvk9c2"))))
(properties `((upstream-name . "eyelinker")))
(build-system r-build-system)
(propagated-inputs
`(("r-intervals" ,r-intervals)
("r-readr" ,r-readr)
("r-stringi" ,r-stringi)
("r-stringr" ,r-stringr)
("r-tibble" ,r-tibble)))
(native-inputs `(("r-knitr" ,r-knitr)))
(home-page
"https://github.com/a-hurst/eyelinker")
(synopsis
"Import ASC Files from EyeLink Eye Trackers")
(description
"Imports plain-text ASC data files from EyeLink eye trackers into
(relatively) tidy data frames for analysis and visualization.")
(license license:gpl3)))