diff options
author | Arun Isaac | 2025-06-18 11:38:25 +0100 |
---|---|---|
committer | Arun Isaac | 2025-06-18 11:39:56 +0100 |
commit | 26824bdf5079ab7ff2bccb28fce083fd1d955ed7 (patch) | |
tree | d86b8739430f4ee22c5524772e71d040e2ad359d | |
parent | fe282755ccb96a6153d8e3dba61ad67b14a03ec3 (diff) | |
download | guix-forge-26824bdf5079ab7ff2bccb28fce083fd1d955ed7.tar.gz guix-forge-26824bdf5079ab7ff2bccb28fce083fd1d955ed7.tar.lz guix-forge-26824bdf5079ab7ff2bccb28fce083fd1d955ed7.zip |
fcgiwrap: Import (ice-9 match) in activation.
* guix/forge/fcgiwrap.scm (fcgiwrap-activation): Import (ice-9 match).
-rw-r--r-- | guix/forge/fcgiwrap.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/forge/fcgiwrap.scm b/guix/forge/fcgiwrap.scm index f320223..f75fa5f 100644 --- a/guix/forge/fcgiwrap.scm +++ b/guix/forge/fcgiwrap.scm @@ -1,5 +1,5 @@ ;;; guix-forge --- Guix software forge meta-service -;;; Copyright © 2023, 2024 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2023–2025 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; This file is part of guix-forge. ;;; @@ -74,7 +74,8 @@ (define (fcgiwrap-activation config) (with-imported-modules '((guix build utils)) #~(begin - (use-modules (guix build utils)) + (use-modules (guix build utils) + (ice-9 match)) ;; Create socket directories and set ownership. (for-each (match-lambda |