summaryrefslogtreecommitdiff
path: root/gnu/ci.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2022-09-12 08:31:36 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-09-24 14:49:09 +0200
commitebe9d660a55629f2506db124b0e016885fc61e5c (patch)
tree9d6e9b7345a2b1ae214d4117428a0748501426af /gnu/ci.scm
parenta13f5ead0265cf0fe11e60150547c09dfc8c45b0 (diff)
gnu: Add compression module.
Move the compression record to a dedicated module so that it can be used outside (guix scripts pack) module. * guix/scripts/pack.scm (<compressor>, %compressors, lookup-compressor): Move it to ... * gnu/compression.scm: ... this new file. * gnu/ci.scm: Adapt it. * local.mk (GNU_SYSTEM_MODULES): Add it.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r--gnu/ci.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm
index 2c51ea7387e..19a48bdbf11 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -39,9 +39,10 @@
39 #:select (gpl3+ license? license-name)) 39 #:select (gpl3+ license? license-name))
40 #:use-module ((guix utils) #:select (%current-system)) 40 #:use-module ((guix utils) #:select (%current-system))
41 #:use-module ((guix scripts pack) 41 #:use-module ((guix scripts pack)
42 #:select (lookup-compressor self-contained-tarball)) 42 #:select (self-contained-tarball))
43 #:use-module (gnu bootloader) 43 #:use-module (gnu bootloader)
44 #:use-module (gnu bootloader u-boot) 44 #:use-module (gnu bootloader u-boot)
45 #:use-module (gnu compression)
45 #:use-module (gnu image) 46 #:use-module (gnu image)
46 #:use-module (gnu packages) 47 #:use-module (gnu packages)
47 #:use-module (gnu packages gcc) 48 #:use-module (gnu packages gcc)