all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Rodion Goritskov <rodion.goritskov@gmail.com>
To: guix-devel@gnu.org
Cc: Rodion Goritskov <rodion.goritskov@gmail.com>
Subject: [PATCH 1/1] remote-server: Fix guix modules selects
Date: Thu, 16 May 2024 01:26:16 +0400	[thread overview]
Message-ID: <20240515212757.10414-2-rodion.goritskov@gmail.com> (raw)
In-Reply-To: <20240515212757.10414-1-rodion.goritskov@gmail.com>

Fixes use of previously re-exported functions from (guix utils).

* src/cuirass/scripts/remote-server.scm (define-module): Change select of
call-with-temporary-output-file to (guix build utils) module.
---
 src/cuirass/scripts/remote-server.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/cuirass/scripts/remote-server.scm b/src/cuirass/scripts/remote-server.scm
index 49b1869..bd63eff 100644
--- a/src/cuirass/scripts/remote-server.scm
+++ b/src/cuirass/scripts/remote-server.scm
@@ -39,9 +39,9 @@
                           store-protocol-error?
                           store-protocol-error-message))
   #:use-module (guix ui)
-  #:use-module ((guix utils)
-                #:select (cache-directory call-with-temporary-output-file))
-  #:use-module ((guix build utils) #:select (mkdir-p))
+  #:use-module ((guix utils) #:select (cache-directory))
+  #:use-module ((guix build utils)
+                #:select (call-with-temporary-output-file mkdir-p))
   #:autoload   (guix build download) (url-fetch)
   #:autoload   (gcrypt pk-crypto) (read-file-sexp)
   #:use-module (simple-zmq)
-- 
2.41.0



  reply	other threads:[~2024-05-16 20:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-15 21:26 [PATCH 0/1] Possible fix of the Cuirass build with the latest Guix Rodion Goritskov
2024-05-15 21:26 ` Rodion Goritskov [this message]
2024-05-17 15:14 ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240515212757.10414-2-rodion.goritskov@gmail.com \
    --to=rodion.goritskov@gmail.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.