derivations: Compile the #:modules passed to `build-expression->derivation'.
* guix/derivations.scm (imported-files)[parent-dirs]: Move to... (parent-directories): ... here. New procedure. (compiled-modules): New procedure. (build-expression->derivation): Use it. * tests/derivations.scm ("build-expression->derivation with modules"): New test.
This commit is contained in:
parent
d398e2c242
commit
d90248844b
|
@ -453,14 +453,9 @@ known in advance, such as a file download."
|
||||||
;; when using `build-expression->derivation'.
|
;; when using `build-expression->derivation'.
|
||||||
(make-parameter (false-if-exception (nixpkgs-derivation* "guile"))))
|
(make-parameter (false-if-exception (nixpkgs-derivation* "guile"))))
|
||||||
|
|
||||||
(define* (imported-files store files
|
(define (parent-directories file-name)
|
||||||
#:key (name "file-import") (system (%current-system)))
|
"Return the list of parent dirs of FILE-NAME, in the order in which an
|
||||||
"Return a derivation that imports FILES into STORE. FILES must be a list
|
`mkdir -p' implementation would make them."
|
||||||
of (FINAL-PATH . FILE-NAME) pairs; each FILE-NAME is read from the file
|
|
||||||
system, imported, and appears under FINAL-PATH in the resulting store path."
|
|
||||||
(define (parent-dirs file-name)
|
|
||||||
;; Return the list of parent dirs of FILE-NAME, in the order in which an
|
|
||||||
;; `mkdir -p' implementation would make them.
|
|
||||||
(let ((not-slash (char-set-complement (char-set #\/))))
|
(let ((not-slash (char-set-complement (char-set #\/))))
|
||||||
(reverse
|
(reverse
|
||||||
(fold (lambda (dir result)
|
(fold (lambda (dir result)
|
||||||
|
@ -474,6 +469,11 @@ system, imported, and appears under FINAL-PATH in the resulting store path."
|
||||||
(remove (cut string=? <> ".")
|
(remove (cut string=? <> ".")
|
||||||
(string-tokenize (dirname file-name) not-slash))))))
|
(string-tokenize (dirname file-name) not-slash))))))
|
||||||
|
|
||||||
|
(define* (imported-files store files
|
||||||
|
#:key (name "file-import") (system (%current-system)))
|
||||||
|
"Return a derivation that imports FILES into STORE. FILES must be a list
|
||||||
|
of (FINAL-PATH . FILE-NAME) pairs; each FILE-NAME is read from the file
|
||||||
|
system, imported, and appears under FINAL-PATH in the resulting store path."
|
||||||
(let* ((files (map (match-lambda
|
(let* ((files (map (match-lambda
|
||||||
((final-path . file-name)
|
((final-path . file-name)
|
||||||
(list final-path
|
(list final-path
|
||||||
|
@ -485,7 +485,7 @@ system, imported, and appears under FINAL-PATH in the resulting store path."
|
||||||
(mkdir %output) (chdir %output)
|
(mkdir %output) (chdir %output)
|
||||||
,@(append-map (match-lambda
|
,@(append-map (match-lambda
|
||||||
((final-path store-path)
|
((final-path store-path)
|
||||||
(append (match (parent-dirs final-path)
|
(append (match (parent-directories final-path)
|
||||||
(() '())
|
(() '())
|
||||||
((head ... tail)
|
((head ... tail)
|
||||||
(append (map (lambda (d)
|
(append (map (lambda (d)
|
||||||
|
@ -515,6 +515,46 @@ search path."
|
||||||
modules)))
|
modules)))
|
||||||
(imported-files store files #:name name #:system system)))
|
(imported-files store files #:name name #:system system)))
|
||||||
|
|
||||||
|
(define* (compiled-modules store modules
|
||||||
|
#:key (name "module-import-compiled")
|
||||||
|
(system (%current-system)))
|
||||||
|
"Return a derivation that builds a tree containing the `.go' files
|
||||||
|
corresponding to MODULES. All the MODULES are built in a context where
|
||||||
|
they can refer to each other."
|
||||||
|
(let* ((module-drv (imported-modules store modules
|
||||||
|
#:system system))
|
||||||
|
(module-dir (derivation-path->output-path module-drv))
|
||||||
|
(files (map (lambda (m)
|
||||||
|
(let ((f (string-join (map symbol->string m)
|
||||||
|
"/")))
|
||||||
|
(cons (string-append f ".go")
|
||||||
|
(string-append module-dir "/" f ".scm"))))
|
||||||
|
modules)))
|
||||||
|
(define builder
|
||||||
|
`(begin
|
||||||
|
(use-modules (system base compile))
|
||||||
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
|
(mkdir out)
|
||||||
|
(chdir out))
|
||||||
|
|
||||||
|
(set! %load-path
|
||||||
|
(cons ,module-dir %load-path))
|
||||||
|
|
||||||
|
,@(map (match-lambda
|
||||||
|
((output . input)
|
||||||
|
(let ((make-parent-dirs (map (lambda (dir)
|
||||||
|
`(unless (file-exists? ,dir)
|
||||||
|
(mkdir ,dir)))
|
||||||
|
(parent-directories output))))
|
||||||
|
`(begin
|
||||||
|
,@make-parent-dirs
|
||||||
|
(compile-file ,input
|
||||||
|
#:output-file ,output
|
||||||
|
#:opts %auto-compilation-options)))))
|
||||||
|
files)))
|
||||||
|
|
||||||
|
(build-expression->derivation store name system builder
|
||||||
|
`(("modules" ,module-drv)))))
|
||||||
|
|
||||||
(define* (build-expression->derivation store name system exp inputs
|
(define* (build-expression->derivation store name system exp inputs
|
||||||
#:key (outputs '("out"))
|
#:key (outputs '("out"))
|
||||||
|
@ -571,6 +611,11 @@ omitted or is #f, the value of the `%guile-for-build' fluid is used instead."
|
||||||
drv)))))
|
drv)))))
|
||||||
inputs))
|
inputs))
|
||||||
|
|
||||||
|
,@(if (null? modules)
|
||||||
|
'()
|
||||||
|
;; Remove our own settings.
|
||||||
|
'((unsetenv "GUILE_LOAD_COMPILED_PATH")))
|
||||||
|
|
||||||
;; Guile sets it, but remove it to avoid conflicts when
|
;; Guile sets it, but remove it to avoid conflicts when
|
||||||
;; building Guile-using packages.
|
;; building Guile-using packages.
|
||||||
(unsetenv "LD_LIBRARY_PATH")))
|
(unsetenv "LD_LIBRARY_PATH")))
|
||||||
|
@ -585,19 +630,30 @@ omitted or is #f, the value of the `%guile-for-build' fluid is used instead."
|
||||||
(remove module-form? exp))
|
(remove module-form? exp))
|
||||||
(_ `(,exp))))))
|
(_ `(,exp))))))
|
||||||
(map second inputs)))
|
(map second inputs)))
|
||||||
(mod-drv (if (null? modules)
|
(mod-drv (and (pair? modules)
|
||||||
#f
|
|
||||||
(imported-modules store modules)))
|
(imported-modules store modules)))
|
||||||
(mod-dir (and mod-drv
|
(mod-dir (and mod-drv
|
||||||
(derivation-path->output-path mod-drv))))
|
(derivation-path->output-path mod-drv)))
|
||||||
|
(go-drv (and (pair? modules)
|
||||||
|
(compiled-modules store modules)))
|
||||||
|
(go-dir (and go-drv
|
||||||
|
(derivation-path->output-path go-drv))))
|
||||||
(derivation store name system guile
|
(derivation store name system guile
|
||||||
`("--no-auto-compile"
|
`("--no-auto-compile"
|
||||||
,@(if mod-dir `("-L" ,mod-dir) '())
|
,@(if mod-dir `("-L" ,mod-dir) '())
|
||||||
,builder)
|
,builder)
|
||||||
env-vars
|
|
||||||
|
;; When MODULES is non-empty, shamelessly clobber
|
||||||
|
;; $GUILE_LOAD_COMPILED_PATH.
|
||||||
|
(if go-dir
|
||||||
|
`(("GUILE_LOAD_COMPILED_PATH" . ,go-dir)
|
||||||
|
,@(alist-delete "GUILE_LOAD_COMPILED_PATH"
|
||||||
|
env-vars))
|
||||||
|
env-vars)
|
||||||
|
|
||||||
`((,(or guile-for-build (%guile-for-build)))
|
`((,(or guile-for-build (%guile-for-build)))
|
||||||
(,builder)
|
(,builder)
|
||||||
,@(map cdr inputs)
|
,@(map cdr inputs)
|
||||||
,@(if mod-drv `((,mod-drv)) '()))
|
,@(if mod-drv `((,mod-drv) (,go-drv)) '()))
|
||||||
#:hash hash #:hash-algo hash-algo
|
#:hash hash #:hash-algo hash-algo
|
||||||
#:outputs outputs)))
|
#:outputs outputs)))
|
||||||
|
|
|
@ -324,6 +324,23 @@
|
||||||
get-bytevector-all))))
|
get-bytevector-all))))
|
||||||
files)))))
|
files)))))
|
||||||
|
|
||||||
|
(test-assert "build-expression->derivation with modules"
|
||||||
|
(let* ((builder `(begin
|
||||||
|
(use-modules (guix build utils))
|
||||||
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
|
(mkdir-p (string-append out "/guile/guix/nix"))
|
||||||
|
#t)))
|
||||||
|
(drv-path (build-expression->derivation %store
|
||||||
|
"test-with-modules"
|
||||||
|
(%current-system)
|
||||||
|
builder '()
|
||||||
|
#:modules
|
||||||
|
'((guix build utils)))))
|
||||||
|
(and (build-derivations %store (list drv-path))
|
||||||
|
(let* ((p (derivation-path->output-path drv-path))
|
||||||
|
(s (stat (string-append p "/guile/guix/nix"))))
|
||||||
|
(eq? (stat:type s) 'directory)))))
|
||||||
|
|
||||||
(test-skip (if (false-if-exception (getaddrinfo "ftp.gnu.org" "http"))
|
(test-skip (if (false-if-exception (getaddrinfo "ftp.gnu.org" "http"))
|
||||||
0
|
0
|
||||||
1))
|
1))
|
||||||
|
|
Loading…
Reference in New Issue