[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/09: website: Fix building with GUIX_WEB_SITE_ROOT_PATH.
From: |
Florian Pelz |
Subject: |
01/09: website: Fix building with GUIX_WEB_SITE_ROOT_PATH. |
Date: |
Fri, 10 Jul 2020 19:13:38 -0400 (EDT) |
pelzflorian pushed a commit to branch wip-i18n
in repository guix-artwork.
commit 09d0aef1f8b7b979acfecaa4ee946ab7f22e1333
Author: Florian Pelz <pelzflorian@pelzflorian.de>
AuthorDate: Wed Oct 30 22:45:45 2019 +0100
website: Fix building with GUIX_WEB_SITE_ROOT_PATH.
* website/.guix.scm: Retain GUIX_WEB_SITE_ROOT_PATH in the build expression.
---
website/.guix.scm | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/website/.guix.scm b/website/.guix.scm
index 060172f..fcd2570 100644
--- a/website/.guix.scm
+++ b/website/.guix.scm
@@ -38,6 +38,9 @@
#:recursive? #t
#:select? (git-predicate this-directory)))
+(define root-path
+ (getenv "GUIX_WEB_SITE_ROOT_PATH"))
+
(define (package+propagated-inputs package)
(match (package-transitive-propagated-inputs package)
(((labels packages) ...)
@@ -126,6 +129,10 @@
;; Use a sane default.
(setenv "XDG_CACHE_HOME" "/tmp/.cache")
+ ;; Use GUIX_WEB_SITE_ROOT_PATH from the environment in which
+ ;; this script was run.
+ (setenv "GUIX_WEB_SITE_ROOT_PATH" #$root-path)
+
(format #t "Running 'haunt build'...~%")
(invoke #+(file-append haunt-with-latest-guile "/bin/haunt")
"build")
- branch wip-i18n created (now 68bdb6b), Florian Pelz, 2020/07/10
- 03/09: website: Refactor GUIX_WEB_SITE_ROOT_PATH handling., Florian Pelz, 2020/07/10
- 04/09: website: Add custom xgettext to extract from nested sexps for i18n., Florian Pelz, 2020/07/10
- 01/09: website: Fix building with GUIX_WEB_SITE_ROOT_PATH.,
Florian Pelz <=
- 06/09: website: media: Do not localize video page URLs., Florian Pelz, 2020/07/10
- 02/09: website: Handle GUIX_WEB_SITE_ROOT_PATH not ending in a slash., Florian Pelz, 2020/07/10
- 07/09: website: nls: Add German translation., Florian Pelz, 2020/07/10
- 08/09: website: navbar: Make dropdowns accessible to keyboard and touch input., Florian Pelz, 2020/07/10
- 09/09: website: Add language selection dropdown to navbar., Florian Pelz, 2020/07/10
- 05/09: website: apps: Mark all files for translation., Florian Pelz, 2020/07/10