diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-26 17:55:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-03 16:59:49 +0100 |
commit | 0f501b0be6b56443bc1c4be0430e94ebd0e3cb28 (patch) | |
tree | 52839e7e5939b58abe7b1223a7d71fe1a6f2d446 | |
parent | 4b2c4cd78290f64e6abda485cbd04bc04b427b6d (diff) | |
download | guix-0f501b0be6b56443bc1c4be0430e94ebd0e3cb28.tar.gz guix-0f501b0be6b56443bc1c4be0430e94ebd0e3cb28.zip |
gnu: Add r-audio.
* gnu/packages/cran.scm (r-audio): New variable.
Change-Id: I9a4e49aae1510af81d512ee9f0bfb4fab006b345
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7932fa58e6..b549d8333c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8803,6 +8803,26 @@ curve (AUROC). The curves can also be visualized. Support for partial areas is provided.") (license license:gpl2+))) +(define-public r-audio + (package + (name "r-audio") + (version "0.1-11") + (source + (origin + (method url-fetch) + (uri (cran-uri "audio" version)) + (sha256 + (base32 "0z719jxmfzmh6c885m1yixjzdsl1wy17s1sw2hp4ppz4bcrzclhh")))) + (properties `((upstream-name . "audio"))) + (build-system r-build-system) + (native-inputs (list pkg-config)) + (home-page "http://www.rforge.net/audio/") + (synopsis "Audio interface for R") + (description + "This package provides interfaces to audio devices (mainly sample-based) +from R to allow recording and playback of audio.") + (license license:expat))) + (define-public r-calibrate (package (name "r-calibrate") |