mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
import/print: package->code: Wrap build system value in module reference.
* guix/import/print.scm (package->code): Return build system value with corresponding module.
This commit is contained in:
parent
1475d45112
commit
6269dd567e
1 changed files with 3 additions and 2 deletions
|
@ -131,8 +131,9 @@ (define (package-lists->code lsts)
|
|||
,@(if replacement
|
||||
`((replacement ,replacement))
|
||||
'())
|
||||
(build-system ,(symbol-append (build-system-name build-system)
|
||||
'-build-system))
|
||||
(build-system (@ (guix build-system ,(build-system-name build-system))
|
||||
,(symbol-append (build-system-name build-system)
|
||||
'-build-system)))
|
||||
,@(match arguments
|
||||
(() '())
|
||||
(args `((arguments ,(list 'quasiquote args)))))
|
||||
|
|
Loading…
Reference in a new issue