guix-commits
[Top][All Lists]
Advanced

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

branch master updated: website: Update build script.


From: Mathieu Othacehe
Subject: branch master updated: website: Update build script.
Date: Mon, 22 Jun 2020 05:01:47 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix-artwork.

The following commit(s) were added to refs/heads/master by this push:
     new 31afa39  website: Update build script.
31afa39 is described below

commit 31afa39afbb0f3167542c3ce2b27ef0ba2761222
Author: Mathieu Othacehe <m.othacehe@gmail.com>
AuthorDate: Mon Jun 22 10:52:06 2020 +0200

    website: Update build script.
    
    Do not use deprecated packages in build script.
    
    * website/.guix.scm: Do not use deprecated Guile 3.0 transition packages.
---
 website/.guix.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/website/.guix.scm b/website/.guix.scm
index aac1c8c..ed2c447 100644
--- a/website/.guix.scm
+++ b/website/.guix.scm
@@ -60,10 +60,10 @@
 (define build
   ;; We need Guile-JSON for 'packages-json-builder'.
   (with-extensions (append (package+propagated-inputs
-                            (specification->package "guile3.0-json@3"))
+                            (specification->package "guile-json"))
 
                            (package+propagated-inputs
-                            (specification->package 
"guile3.0-syntax-highlight")))
+                            (specification->package "guile-syntax-highlight")))
     (with-imported-modules (source-module-closure
                             '((guix build utils)))
       #~(begin
@@ -106,7 +106,7 @@
           (setenv "XDG_CACHE_HOME" "/tmp/.cache")
 
           (format #t "Running 'haunt build'...~%")
-          (invoke #+(file-append (specification->package "guile3.0-haunt")
+          (invoke #+(file-append (specification->package "haunt")
                                  "/bin/haunt")
                   "build")
 
@@ -116,7 +116,7 @@
           (symlink "guix.html" (string-append #$output "/index.html"))))))
 
 (computed-file "guix-web-site" build
-               #:guile (specification->package "guile-next@3")
+               #:guile (specification->package "guile")
                #:options '(#:effective-version "3.0"))
 
 ;; Local Variables:



reply via email to

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