mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add r-bitops.
* gnu/packages/statistics.scm (r-bitops): New variable.
This commit is contained in:
parent
8406138b72
commit
bb6d2dadf7
1 changed files with 18 additions and 0 deletions
|
@ -1385,3 +1385,21 @@ (define-public r-rcpparmadillo
|
||||||
;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
|
;; bindings to Armadillo) is licensed under the GNU GPL version 2 or
|
||||||
;; later, as is the rest of 'Rcpp'.
|
;; later, as is the rest of 'Rcpp'.
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-bitops
|
||||||
|
(package
|
||||||
|
(name "r-bitops")
|
||||||
|
(version "1.0-6")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "bitops" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"176nr5wpnkavn5z0yy9f7d47l37ndnn2w3gv854xav8nnybi6wwv"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "http://cran.r-project.org/web/packages/bitops")
|
||||||
|
(synopsis "Bitwise operations")
|
||||||
|
(description
|
||||||
|
"This package provides functions for bitwise operations on integer
|
||||||
|
vectors.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue