diff options
author | pjotrp <pjotr.public12@thebird.nl> | 2017-02-28 16:42:25 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-03-13 10:34:00 +0100 |
commit | 3288e647e393ecfd5ef99160cedd9dfd931f1bfe (patch) | |
tree | 2ff42c95da9feafe793b199f2c6ebecbff042702 /gnu | |
parent | 8f7ea70913107d07e2dea721b2f0b8fda1af24da (diff) | |
download | guix-3288e647e393ecfd5ef99160cedd9dfd931f1bfe.tar guix-3288e647e393ecfd5ef99160cedd9dfd931f1bfe.tar.gz |
gnu: r-hexbin: Update to 1.27.1-1.
The package tarball was updated in place, resulting in a change in the hash
value. We decided to bump the version to 1.27.1-1 instead of keeping the
version at upstream's 1.27.1.
* gnu/packages/statistics.scm (r-hexbin): Update to 1.27.1-1.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 306df9cefd..75bdb5df83 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -3226,14 +3226,17 @@ and tidyr provides no margins or aggregation.") (define-public r-hexbin (package (name "r-hexbin") - (version "1.27.1") + ;; The package tarball was updated in place, resulting in a change in the + ;; hash value. We decided to bump the version to 1.27.1-1 instead of + ;; keeping the version at upstream's 1.27.1. + (version "1.27.1-1") (source (origin (method url-fetch) - (uri (cran-uri "hexbin" version)) + (uri (cran-uri "hexbin" "1.27.1")) (sha256 (base32 - "0xi6fbf1fvyn2gffr052n3viibqzpr3603sgi4xaminbzja4syjh")))) + "025d609z1nyy684hwvp34b9mjzkgvild7fvfr95f941dmsikan87")))) (build-system r-build-system) (propagated-inputs `(("r-lattice" ,r-lattice))) |