diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-12 08:31:36 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-24 14:49:09 +0200 |
commit | ebe9d660a55629f2506db124b0e016885fc61e5c (patch) | |
tree | 9d6e9b7345a2b1ae214d4117428a0748501426af /gnu/local.mk | |
parent | a13f5ead0265cf0fe11e60150547c09dfc8c45b0 (diff) | |
download | guix-ebe9d660a55629f2506db124b0e016885fc61e5c.tar.gz |
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/local.mk')
-rw-r--r-- | gnu/local.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index 140845a7c6..4774be2688 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -81,6 +81,7 @@ GNU_SYSTEM_MODULES = \ %D%/bootloader/u-boot.scm \ %D%/bootloader/depthcharge.scm \ %D%/ci.scm \ + %D%/compression.scm \ %D%/home.scm \ %D%/home/services.scm \ %D%/home/services/desktop.scm \ |