gnu: r-bionetstat: Update to 1.20.0.
* gnu/packages/bioconductor.scm (r-bionetstat): Update to 1.20.0. [source]: Delete minified JavaScript file. [arguments]: Add 'process-javascript phase. [native-inputs]: Add esbuild and r-rmarkdown.master
parent
1d91760996
commit
46b87ee7e7
|
@ -20300,16 +20300,29 @@ scoring subnetwork.")
|
||||||
(define-public r-bionetstat
|
(define-public r-bionetstat
|
||||||
(package
|
(package
|
||||||
(name "r-bionetstat")
|
(name "r-bionetstat")
|
||||||
(version "1.18.0")
|
(version "1.20.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (bioconductor-uri "BioNetStat" version))
|
(uri (bioconductor-uri "BioNetStat" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1h99d6gnqw5v9ha2169zfhw9cvxhyjgkf4zm8qj1i03h2cywapgv"))))
|
"0bvfgppsdih6s70iizd7zh3zkb0hg4s4h1728xmyjqbvkl8fsdf4"))
|
||||||
|
(snippet
|
||||||
|
'(delete-file "inst/datatables/js/jquery.dataTables.min.js"))))
|
||||||
(properties `((upstream-name . "BioNetStat")))
|
(properties `((upstream-name . "BioNetStat")))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'process-javascript
|
||||||
|
(lambda _
|
||||||
|
(with-directory-excursion "inst/datatables/js/"
|
||||||
|
(invoke "esbuild"
|
||||||
|
"jquery.dataTables.js"
|
||||||
|
"--minify"
|
||||||
|
"--outfile=jquery.dataTables.min.js")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list r-biocparallel
|
(list r-biocparallel
|
||||||
r-dt
|
r-dt
|
||||||
|
@ -20330,7 +20343,7 @@ scoring subnetwork.")
|
||||||
r-whisker
|
r-whisker
|
||||||
r-yaml))
|
r-yaml))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list r-knitr))
|
(list esbuild r-knitr r-rmarkdown))
|
||||||
(home-page "https://github.com/jardimViniciusC/BioNetStat")
|
(home-page "https://github.com/jardimViniciusC/BioNetStat")
|
||||||
(synopsis "Biological network analysis")
|
(synopsis "Biological network analysis")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue