ci: Add missing imports.
This is a followup to 041a9466ea
.
* guix/ci.scm: Add missing imports.
* guix/channels.scm: Remove (guix ci) import.
This commit is contained in:
parent
4ea5767d3a
commit
246c0c60da
2 changed files with 3 additions and 2 deletions
|
@ -20,7 +20,6 @@
|
||||||
|
|
||||||
(define-module (guix channels)
|
(define-module (guix channels)
|
||||||
#:use-module (git)
|
#:use-module (git)
|
||||||
#:use-module (guix ci)
|
|
||||||
#:use-module (guix git)
|
#:use-module (guix git)
|
||||||
#:use-module (guix git-authenticate)
|
#:use-module (guix git-authenticate)
|
||||||
#:use-module ((guix openpgp)
|
#:use-module ((guix openpgp)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2020 Mathieu Othacehe <othacehe@gnu.org>
|
;;; Copyright © 2020 Mathieu Othacehe <othacehe@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -23,6 +23,8 @@ (define-module (guix ci)
|
||||||
#:use-module (json)
|
#:use-module (json)
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
|
#:use-module (guix i18n)
|
||||||
|
#:use-module (guix diagnostics)
|
||||||
#:autoload (guix channels) (channel)
|
#:autoload (guix channels) (channel)
|
||||||
#:export (build-product?
|
#:export (build-product?
|
||||||
build-product-id
|
build-product-id
|
||||||
|
|
Loading…
Reference in a new issue