From 390fc5dddb189b2ae6ff982e975dd9476729a7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 26 Jan 2026 17:28:01 +0100 Subject: [PATCH] build-system/channel: Honor #:system. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/build-system/channel.scm (build-channels): Pass #:system to ‘channel-instances->derivation’. (channel-build-system): Pass #:system to ‘arguments’. Reported-by: Rutherther Change-Id: I989d110a0386d933ec5c40f7dd1ba03a37b31e5b Signed-off-by: Ludovic Courtès Merges: #5930 --- guix/build-system/channel.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/guix/build-system/channel.scm b/guix/build-system/channel.scm index 0607dcf4d7..7b906dea28 100644 --- a/guix/build-system/channel.scm +++ b/guix/build-system/channel.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2019-2022, 2024 Ludovic Courtès +;;; Copyright © 2019-2022, 2024, 2026 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -60,7 +60,8 @@ (return (list (checkout->channel-instance source #:commit commit)))))))) - (channel-instances->derivation instances))) + (channel-instances->derivation instances + #:system system))) (define channel-build-system ;; Build system used to "convert" a channel instance to a package. @@ -72,6 +73,7 @@ (system system) (build build-channels) (arguments `(#:source ,source + #:system ,system #:channels ,channels #:authenticate? ,authenticate? #:commit ,commit))))))