diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-05-09 14:25:48 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-05-09 15:24:13 +0200 |
commit | f0509acf257c4917b67b63b05ccb128980613139 (patch) | |
tree | d3547e398ccd37e6b846f8ef17002422c957abe6 | |
parent | c4b04d28d098be0422db7ae82765a7cc0e6a105e (diff) | |
download | guix-f0509acf257c4917b67b63b05ccb128980613139.tar.gz guix-f0509acf257c4917b67b63b05ccb128980613139.zip |
gnu: r-graphlayouts: Update to 1.0.0.
* gnu/packages/cran.scm (r-graphlayouts): Update to 1.0.0.
[native-inputs]: Add r-knitr.
-rw-r--r-- | gnu/packages/cran.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4e4b503ed2..2f08bac9b2 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -24957,18 +24957,19 @@ be used further by e.g. graphic devices.") (define-public r-graphlayouts (package (name "r-graphlayouts") - (version "0.8.4") + (version "1.0.0") (source (origin (method url-fetch) (uri (cran-uri "graphlayouts" version)) (sha256 (base32 - "1zch8v0fc9lrm1pklcvi7g4g7zmqq3gxprm7pbdx018b35z8z3bp")))) + "1favwyk5jak95jhfyadcdgr53mq8g92z3vdp2662ivaj7lg48mc9")))) (properties `((upstream-name . "graphlayouts"))) (build-system r-build-system) (propagated-inputs (list r-igraph r-rcpp r-rcpparmadillo)) + (native-inputs (list r-knitr)) (home-page "https://github.com/schochastics/graphlayouts") (synopsis "Additional layout algorithms for network visualizations") (description |