Skip to content
Snippets Groups Projects
Commit 207ad6b2 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

distro: %static-binaries: Use (guix build utils).

* distro/packages/base.scm (%static-binaries): Add missing
  use of (guix build utils).
parent 683d57f4
No related branches found
No related tags found
No related merge requests found
......@@ -1997,12 +1997,14 @@ (define %static-binaries
(source #f)
(inputs %static-inputs)
(arguments
`(#:builder
`(#:modules ((guix build utils))
#:builder
(begin
(use-modules (ice-9 ftw)
(ice-9 match)
(srfi srfi-1)
(srfi srfi-26))
(srfi srfi-26)
(guix build utils))
(let ()
(define (directory-contents dir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment