NagaMalli

Git diff for silicate package

Apr 20th, 2020
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. error: cannot run less: No such file or directory
  2. diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
  3. index 2de673c961..281fa41c14 100644
  4. --- a/gnu/packages/cran.scm
  5. +++ b/gnu/packages/cran.scm
  6. @@ -21166,3 +21166,44 @@ evaluated interactively.")
  7. <https://www.xnat.org>.Rxnat is using the XNAT REST API to perform data
  8. queries and download images.")
  9. (license license:gpl2)))
  10. +
  11. +(define-public r-silicate
  12. + (package
  13. + (name "r-silicate")
  14. + (version "0.4.0")
  15. + (source
  16. + (origin
  17. + (method url-fetch)
  18. + (uri (cran-uri "silicate" version))
  19. + (sha256
  20. + (base32
  21. + "1bvwdrmnrcnyq21sz50g9aksqhd5xkcqhd305mr606mgm183x5rn"))))
  22. + (properties `((upstream-name . "silicate")))
  23. + (build-system r-build-system)
  24. + (propagated-inputs
  25. + `(("r-crsmeta" ,r-crsmeta)
  26. + ("r-decido" ,r-decido)
  27. + ("r-dplyr" ,r-dplyr)
  28. + ("r-gibble" ,r-gibble)
  29. + ("r-gridbase" ,r-gridbase)
  30. + ("r-magrittr" ,r-magrittr)
  31. + ("r-purrr" ,r-purrr)
  32. + ("r-rlang" ,r-rlang)
  33. + ("r-tibble" ,r-tibble)
  34. + ("r-unjoin" ,r-unjoin)))
  35. + (native-inputs `(("r-knitr" ,r-knitr)))
  36. + (home-page "https://github.com/hypertidy/silicate")
  37. + (synopsis "Common Forms for Complex Hierarchical and Relational Data Structures")
  38. + (description
  39. + "Generate common data forms for complex data suitable for conversions
  40. +and transmission by decomposition as paths or primitives.Paths are sequentially-linked
  41. +records, primitives are basic atomic elements and both can model many forms
  42. +and be grouped into hierarchical structures.The universal models 'SC0'
  43. +(structural) and 'SC'(labelled, relational) are composed of edges and can
  44. +represent any hierarchical form.Specialist models 'PATH', 'ARC' and 'TRI'
  45. +provide the most common intermediate forms used for converting from one form
  46. +to another.The methods are inspired by the simplicial complex
  47. +<https://en.wikipedia.org/wiki/Simplicial_complex> and
  48. +provide intermediate forms that relate spatial
  49. +data structures to this mathematical construct.")
  50. + (license license:gpl3)))
Add Comment
Please, Sign In to add comment