mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
build-system/gnu: Introduce ‘%gnu-build-system-modules’ deprecated alias.
This is a followup to 9e4ce281dbd92e3c52b831824ebb1f77023c960c. * guix/build-system/gnu.scm (%gnu-build-system-modules): New deprecated alias. Change-Id: Ia40c9920b2927ac00660647ab1a475e2a6d5b787
This commit is contained in:
parent
4a4508c241
commit
28dbfdb38f
1 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
|||
(define-module (guix build-system gnu)
|
||||
#:use-module (guix store)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix deprecation)
|
||||
#:use-module (guix memoization)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix monads)
|
||||
|
@ -56,6 +57,9 @@ (define %default-gnu-imported-modules
|
|||
(guix build gremlin)
|
||||
(guix elf)))
|
||||
|
||||
(define-deprecated/alias %gnu-build-system-modules
|
||||
%default-gnu-imported-modules)
|
||||
|
||||
(define %default-gnu-modules
|
||||
;; Modules in scope in the build-side environment.
|
||||
'((guix build gnu-build-system)
|
||||
|
|
Loading…
Reference in a new issue