This is an automated email from the git hooks/post-receive script. civodul pushed a commit to branch master in repository maintenance.
The following commit(s) were added to refs/heads/master by this push: new 02f87435 hydra: services: guix-packages-website: Update to 0.3.0-0.e669a5e963. 02f87435 is described below commit 02f874358966661a845a81c2ecf3ea4b8b967d13 Author: Luis Felipe <sirga...@zoho.com> AuthorDate: Fri Dec 27 15:34:50 2024 -0500 hydra: services: guix-packages-website: Update to 0.3.0-0.e669a5e963. * hydra/modules/sysadmin/services.scm (%guix-packages-website): Update commit, version and hash accordingly. (guix-packages-website-shepherd-services): Add a new environment variable "GUIX_PACKAGES_WEBSITE_DOMAIN_NAME". Signed-off-by: Ludovic Courtès <l...@gnu.org> --- hydra/modules/sysadmin/services.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/hydra/modules/sysadmin/services.scm b/hydra/modules/sysadmin/services.scm index 64c4c711..7fb63f7a 100644 --- a/hydra/modules/sysadmin/services.scm +++ b/hydra/modules/sysadmin/services.scm @@ -1211,8 +1211,8 @@ to a selected directory.") ;;; (define %guix-packages-website - (let* ((commit "927b073740c9a12a1f414ce9aee6008add4ef310") - (version (git-version "0" "0" commit))) + (let* ((commit "e669a5e9630f474145796d26917f4fa30aef3227") + (version (git-version "0.3.0" "0" commit))) (origin (method git-fetch) (uri (git-reference @@ -1221,7 +1221,7 @@ to a selected directory.") (file-name (git-file-name "guix-packages-website" version)) (sha256 (base32 - "0zl5dkz2cipfqhy95y5v3l5l0q1zak7f900q97zvdx9sz8k30wbx"))))) + "16dgzd7hw65dhapcsny1gf13cy13yb53pb7n67yckhplj8xxhj50"))))) (define-record-type* <guix-packages-website-configuration> guix-packages-website-configuration make-guix-packages-website-configuration @@ -1296,7 +1296,8 @@ to a selected directory.") '("conf" "ENTRY" "gweb" "icon.svg" "pub"))) #:directory "/var/lib/guix-packages-website" #:namespaces (delq 'net %namespaces) - #:preserved-environment-variables '("GUIX_LOCPATH" "LC_ALL" "HOME"))) + #:preserved-environment-variables + '("GUIX_LOCPATH" "LC_ALL" "HOME" "GUIX_PACKAGES_WEBSITE_DOMAIN_NAME"))) (list (shepherd-service (provision '(guix-packages-website)) @@ -1316,7 +1317,8 @@ to a selected directory.") #:environment-variables (list "GUIX_LOCPATH=/run/current-system/locale" "LC_ALL=en_US.utf8" - "HOME=/var/lib/guix-packages-website"))) + "HOME=/var/lib/guix-packages-website" + "GUIX_PACKAGES_WEBSITE_DOMAIN_NAME=packages.guix.gnu.org"))) (stop #~(make-kill-destructor)) (documentation "Run the Guix Packages website.")))))