guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/70: gnu: r-shiny: Update to 1.8.0.


From: guix-commits
Subject: 11/70: gnu: r-shiny: Update to 1.8.0.
Date: Thu, 28 Dec 2023 03:35:43 -0500 (EST)

rekado pushed a commit to branch r-updates
in repository guix.

commit 947ed27d5c491714fbb74beb37e96f4dd33c9b5a
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Dec 28 00:25:33 2023 +0100

    gnu: r-shiny: Update to 1.8.0.
    
    * gnu/packages/cran.scm (r-shiny): Update to 1.8.0.
    [arguments]: Do not use quasiquote for argument list.
    
    Change-Id: Id36b3168a13a254e26cda30d7eaa45874d40c4e3
---
 gnu/packages/cran.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 9ced81af4d..916113503b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -4845,7 +4845,7 @@ previewing themes in real time.")
 (define-public r-shiny
   (package
     (name "r-shiny")
-    (version "1.7.4")
+    (version "1.8.0")
     (source
      (origin
        (method git-fetch)
@@ -4855,7 +4855,7 @@ previewing themes in real time.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0297sbrc7wfj0qfn63yrgs4xkxaxp95ppipdp9pqjg5qhm9k5wbi"))
+         "0rfrch2147yhp2vkr3198gn1ww00ckzcw4i6rywfl38c6fdw9vr1"))
        (snippet
         '(for-each delete-file
                    '("inst/www/shared/bootstrap/js/bootstrap.min.js"
@@ -4874,14 +4874,16 @@ previewing themes in real time.")
                      "inst/www/shared/strftime/strftime-min.js")))))
     (build-system r-build-system)
     (arguments
-     `(#:modules ((guix build r-build-system)
+     (list
+      #:modules '((guix build r-build-system)
                   (guix build minify-build-system)
                   (guix build utils)
                   (ice-9 match))
-       #:imported-modules (,@%r-build-system-modules
-                           (guix build minify-build-system))
-       #:phases
-       (modify-phases (@ (guix build r-build-system) %standard-phases)
+      #:imported-modules
+      `(,@%r-build-system-modules
+        (guix build minify-build-system))
+      #:phases
+      '(modify-phases (@ (guix build r-build-system) %standard-phases)
          (add-after 'unpack 'replace-bundled-minified-JavaScript
            (lambda* (#:key inputs #:allow-other-keys)
              (let ((replace-file (lambda (old new)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]