diff options
author | zimoun <zimon.toutoune@gmail.com> | 2020-09-11 20:08:41 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-09-11 21:58:55 +0200 |
commit | c23ff34423bec6982d59cddd295018ae5f4c68b2 (patch) | |
tree | 981c5f63491cff4214a90d4bc510e28764b45826 /gnu/packages/graph.scm | |
parent | 1dc50e419044e7ecacef137b1f8d7daae306017b (diff) |
gnu: r-igraph: Move to (gnu packages cran).
* gnu/packages/graph.scm (r-igraph): Move from here...
* gnu/packages/cran.scm (r-igraph): ...to here.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages/graph.scm')
-rw-r--r-- | gnu/packages/graph.scm | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 54ced01f6c..a307fee808 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -121,38 +121,6 @@ more.") (home-page "https://pypi.org/project/python-igraph/") (synopsis "Python bindings for the igraph network analysis library"))) -(define-public r-igraph - (package - (name "r-igraph") - (version "1.2.5") - (source - (origin - (method url-fetch) - (uri (cran-uri "igraph" version)) - (sha256 - (base32 - "126z1ygbmi3g7hk97snf22rnx680dyi30idssm5zacba5rdngp8c")))) - (build-system r-build-system) - (native-inputs - `(("gfortran" ,gfortran))) - (inputs - `(("gmp" ,gmp) - ("glpk" ,glpk) - ("libxml2" ,libxml2) - ("zlib" ,zlib))) - (propagated-inputs - `(("r-magrittr" ,r-magrittr) - ("r-matrix" ,r-matrix) - ("r-pkgconfig" ,r-pkgconfig))) - (home-page "https://igraph.org") - (synopsis "Network analysis and visualization") - (description - "This package provides routines for simple graphs and network analysis. -It can handle large graphs very well and provides functions for generating -random and regular graphs, graph visualization, centrality methods and much -more.") - (license license:gpl2+))) - (define-public r-rgraphviz (package (name "r-rgraphviz") |