diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-05-13 14:49:10 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-13 14:49:10 +0200 |
commit | 92e4689c0b5fe2a85e5aea2fe67a8d3eaf7dc771 (patch) | |
tree | 594cf67504814eb815f5607319dc927f3b605e2e | |
parent | 69c47d8261abfbcdbda6b2a4d53bd95796c315d3 (diff) | |
download | guix-artwork-92e4689c0b5fe2a85e5aea2fe67a8d3eaf7dc771.tar guix-artwork-92e4689c0b5fe2a85e5aea2fe67a8d3eaf7dc771.tar.gz |
website: download: Temporarily downgrade to 0.8.1.
* website/www/download.scm (download-page): Adjust for 0.8.1.
-rw-r--r-- | website/www/download.scm | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/website/www/download.scm b/website/www/download.scm index a74b5c3..04b92f3 100644 --- a/website/www/download.scm +++ b/website/www/download.scm @@ -83,25 +83,27 @@ Linux-based system.") (latest-guix-version) " (" arch ")") #:file (string-append - "guixsd-usb-install-" + ;; TODO: Adjust for 0.8.2. + "gsd-usb-install-" (latest-guix-version) "." arch "-linux.xz") #:description %usb-image-description #:manual %usb-image-manual #:image %guixsd-image)) '("x86_64" "i686")) - ,@(map (lambda (arch) - (summary-box (string-append "GNU Guix " - (latest-guix-version) - " Binary (" arch ")") - #:file (string-append - "guix-binary-" - (latest-guix-version) - "." arch "-linux.tar.xz") - #:description %binary-tarball-description - #:manual %binary-tarball-manual - #:image %guix-image)) - '("x86_64" "i686" "mips64el" "armhf")) + ;; TODO: Reinstate for 0.8.2. + ;; ,@(map (lambda (arch) + ;; (summary-box (string-append "GNU Guix " + ;; (latest-guix-version) + ;; " Binary (" arch ")") + ;; #:file (string-append + ;; "guix-binary-" + ;; (latest-guix-version) + ;; "." arch "-linux.tar.xz") + ;; #:description %binary-tarball-description + ;; #:manual %binary-tarball-manual + ;; #:image %guix-image)) + ;; '("x86_64" "i686" "mips64el" "armhf")) ,(summary-box (string-append "GNU Guix " (latest-guix-version) " Source") |