gnu: r-shiny: Update to 1.1.0.
* gnu/packages/web.scm (r-shiny): Update to 1.1.0. [source]: Fetch from git. [propagated-inputs]: Add r-crayon.
This commit is contained in:
parent
eb0d599a67
commit
508dd24abe
|
@ -5326,16 +5326,17 @@ snippets on @url{https://commandlinefu.com}.")
|
||||||
(define-public r-shiny
|
(define-public r-shiny
|
||||||
(package
|
(package
|
||||||
(name "r-shiny")
|
(name "r-shiny")
|
||||||
(version "1.0.3")
|
(version "1.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/rstudio/shiny/"
|
(uri (git-reference
|
||||||
"archive/v" version ".tar.gz"))
|
(url "https://github.com/rstudio/shiny.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0z2v2s4hd44mvzjn7r70549kdzkrrch9nxhp27r6x2cy6micizm3"))))
|
"041q2gzvzs13syfhbirmkik96asdji8dxnnbs63j7v1ks97hrvvz"))))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build r-build-system)
|
`(#:modules ((guix build r-build-system)
|
||||||
|
@ -5400,7 +5401,8 @@ snippets on @url{https://commandlinefu.com}.")
|
||||||
"jquery.min.js")))))
|
"jquery.min.js")))))
|
||||||
#t)))))
|
#t)))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("r-httpuv" ,r-httpuv)
|
`(("r-crayon" ,r-crayon)
|
||||||
|
("r-httpuv" ,r-httpuv)
|
||||||
("r-mime" ,r-mime)
|
("r-mime" ,r-mime)
|
||||||
("r-jsonlite" ,r-jsonlite)
|
("r-jsonlite" ,r-jsonlite)
|
||||||
("r-xtable" ,r-xtable)
|
("r-xtable" ,r-xtable)
|
||||||
|
|
Loading…
Reference in New Issue