diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-03-27 02:14:49 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-03-27 03:26:45 +0200 |
commit | 917378f787d747729861d18f32c257234b7250c5 (patch) | |
tree | 06ddc82a24f3e2b0fd013cf846ed028c76ded09d | |
parent | 5000283b5d93999c544b4e7de514528974e5ce01 (diff) | |
download | patches-917378f787d747729861d18f32c257234b7250c5.tar patches-917378f787d747729861d18f32c257234b7250c5.tar.gz |
gnu: r-blob: Update to 1.1.1.
* gnu/packages/statistics.scm (r-blob): Update to 1.1.1.
[propagated-inputs]: Add r-prettyunits.
-rw-r--r-- | gnu/packages/statistics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 363e6c387f..6abf00a140 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2672,16 +2672,17 @@ that package, other packages are unaffected.") (define-public r-blob (package (name "r-blob") - (version "1.1.0") + (version "1.1.1") (source (origin (method url-fetch) (uri (cran-uri "blob" version)) (sha256 (base32 - "05pazzcyz3c3vd2l70zq9cf172cgjff4dnf419zigfnxycyn1mhn")))) + "0lsg91hk508dd95ivig2lwg62qafwnarjw68110kx63cfk4zkjxc")))) (build-system r-build-system) (propagated-inputs - `(("r-tibble" ,r-tibble))) + `(("r-prettyunits" ,r-prettyunits) + ("r-tibble" ,r-tibble))) (home-page "https://github.com/hadley/blob") (synopsis "Simple S3 Class for representing vectors of binary data") (description "Raw vectors in R are useful for storing a single binary |