mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Update some packages using old JavaScript minifier.
* gnu/packages/minetest.scm (minetest-basic-trains): New variable. * gnu/packages/bioinformatics.scm (bismark): Update uglifyjs input. * gnu/packages/ci.scm (laminar): Update uglifyjs input. * gnu/packages/cran.scm (r-shiny r-shinytree r-shinydashboard r-colourpicker r-threejs r-flexdashboard r-networkd3 r-dygraphs): Update uglifyjs input. * gnu/packages/javascript.scm (js-mathjax): Update uglifyjs input. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
cd5145875e
commit
f36b789f78
4 changed files with 28 additions and 29 deletions
|
@ -106,7 +106,6 @@
|
|||
#:use-module (gnu packages jemalloc)
|
||||
#:use-module (gnu packages jupyter)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages lisp-xyz)
|
||||
#:use-module (gnu packages logging)
|
||||
#:use-module (gnu packages lsof)
|
||||
#:use-module (gnu packages machine-learning)
|
||||
|
@ -148,6 +147,7 @@
|
|||
#:use-module (gnu packages textutils)
|
||||
#:use-module (gnu packages time)
|
||||
#:use-module (gnu packages tls)
|
||||
#:use-module (gnu packages uglifyjs)
|
||||
#:use-module (gnu packages vim)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages wget)
|
||||
|
@ -9318,7 +9318,7 @@ Browser.")
|
|||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let* ((file (assoc-ref inputs "plotly.js"))
|
||||
(installed "plotly/plotly.js"))
|
||||
(let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
|
||||
(let ((minified (open-pipe* OPEN_READ "uglifyjs" file)))
|
||||
(call-with-output-file installed
|
||||
(cut dump-port minified <>))))
|
||||
#t))
|
||||
|
@ -9376,7 +9376,7 @@ Browser.")
|
|||
"v1.39.4/dist/plotly.js"))
|
||||
(sha256
|
||||
(base32 "138mwsr4nf5qif4mrxx286mpnagxd1xwl6k8aidrjgknaqg88zyr"))))
|
||||
("uglify-js" ,uglify-js)))
|
||||
("uglifyjs" ,node-uglify-js)))
|
||||
(home-page "https://www.bioinformatics.babraham.ac.uk/projects/bismark/")
|
||||
(synopsis "Map bisulfite treated sequence reads and analyze methylation")
|
||||
(description "Bismark is a program to map bisulfite treated sequencing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue