gnu: gspell: Build with gobject-introspection.
[jackhill/guix/guix.git] / guix / derivations.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
e8561775 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
dc673fa1 3;;; Copyright © 2016, 2017 Mathieu Lirzin <mthl@gnu.org>
77d3cf08 4;;;
233e7676 5;;; This file is part of GNU Guix.
77d3cf08 6;;;
233e7676 7;;; GNU Guix is free software; you can redistribute it and/or modify it
77d3cf08
LC
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
233e7676 12;;; GNU Guix is distributed in the hope that it will be useful, but
77d3cf08
LC
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
233e7676 18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
77d3cf08
LC
19
20(define-module (guix derivations)
21 #:use-module (srfi srfi-1)
22 #:use-module (srfi srfi-9)
07c86312 23 #:use-module (srfi srfi-9 gnu)
ba04f80e 24 #:use-module (srfi srfi-11)
77d3cf08 25 #:use-module (srfi srfi-26)
f304c9c2
LC
26 #:use-module (srfi srfi-34)
27 #:use-module (srfi srfi-35)
2535635f 28 #:use-module (ice-9 binary-ports)
77d3cf08
LC
29 #:use-module (rnrs bytevectors)
30 #:use-module (ice-9 match)
31 #:use-module (ice-9 rdelim)
e387ab7c 32 #:use-module (ice-9 vlist)
69f90f5c 33 #:use-module (guix store)
26bbbb95 34 #:use-module (guix utils)
4c0c4db0 35 #:use-module (guix base16)
f9704f17 36 #:use-module (guix memoization)
958dd3ce 37 #:use-module (guix combinators)
ba04f80e 38 #:use-module (guix deprecation)
93c2a007
LC
39 #:use-module (guix diagnostics)
40 #:use-module (guix i18n)
e87f0591 41 #:use-module (guix monads)
ca719424 42 #:use-module (gcrypt hash)
ddc29a78 43 #:use-module (guix base32)
969df974 44 #:use-module (guix records)
ed3592a9 45 #:use-module (guix sets)
9a20830e
LC
46 #:export (<derivation>
47 derivation?
77d3cf08
LC
48 derivation-outputs
49 derivation-inputs
50 derivation-sources
51 derivation-system
7ce7361b 52 derivation-builder
77d3cf08
LC
53 derivation-builder-arguments
54 derivation-builder-environment-vars
6a446d56 55 derivation-file-name
9a20830e 56 derivation-prerequisites
ba04f80e
LC
57 derivation-build-plan
58 derivation-prerequisites-to-build ;deprecated
77d3cf08 59
9a20830e 60 <derivation-output>
77d3cf08
LC
61 derivation-output?
62 derivation-output-path
63 derivation-output-hash-algo
64 derivation-output-hash
36bbbbd1 65 derivation-output-recursive?
77d3cf08 66
9a20830e 67 <derivation-input>
77d3cf08 68 derivation-input?
ba04f80e 69 derivation-input
77d3cf08 70 derivation-input-path
2ef22a9f 71 derivation-input-derivation
77d3cf08 72 derivation-input-sub-derivations
dd36b51b 73 derivation-input-output-paths
b9373e26 74 derivation-input-output-path
3681db5d 75 valid-derivation-input?
77d3cf08 76
f304c9c2
LC
77 &derivation-error
78 derivation-error?
79 derivation-error-derivation
80 &derivation-missing-output-error
81 derivation-missing-output-error?
82 derivation-missing-output
83
e786293e 84 derivation-name
0b6af195 85 derivation-output-names
77d3cf08 86 fixed-output-derivation?
fc93e309
LC
87 offloadable-derivation?
88 substitutable-derivation?
fcbe4f71 89 derivation-input-fold
e9651e39 90 substitution-oracle
341c6fdd 91 derivation-hash
8856f409 92 derivation-properties
341c6fdd
LC
93
94 read-derivation
015f17e8 95 read-derivation-from-file
26bbbb95 96 write-derivation
59688fc4
LC
97 derivation->output-path
98 derivation->output-paths
de4c3f26 99 derivation-path->output-path
7244a5f7 100 derivation-path->output-paths
d9085c23 101 derivation
713335fa 102 raw-derivation
34797d8a 103 invalidate-derivation-caches!
969df974 104
e387ab7c 105 map-derivation
d9085c23 106
01d8ac64 107 build-derivations
e87f0591 108 built-derivations
e87f0591 109
d26e1967
LC
110 file-search-error?
111 file-search-error-file-name
112 file-search-error-search-path
9d8100f4 113
d26e1967 114 search-path*
6985335f 115 module->source-file-name
aa72d9af 116 build-expression->derivation)
e87f0591
LC
117
118 ;; Re-export it from here for backward compatibility.
01d8ac64 119 #:re-export (%guile-for-build))
77d3cf08 120
f304c9c2
LC
121;;;
122;;; Error conditions.
123;;;
124
f9e8a123 125(define-condition-type &derivation-error &store-error
f304c9c2
LC
126 derivation-error?
127 (derivation derivation-error-derivation))
128
129(define-condition-type &derivation-missing-output-error &derivation-error
130 derivation-missing-output-error?
131 (output derivation-missing-output))
132
77d3cf08
LC
133;;;
134;;; Nix derivations, as implemented in Nix's `derivations.cc'.
135;;;
136
dc673fa1 137(define-immutable-record-type <derivation>
6a446d56
LC
138 (make-derivation outputs inputs sources system builder args env-vars
139 file-name)
77d3cf08
LC
140 derivation?
141 (outputs derivation-outputs) ; list of name/<derivation-output> pairs
142 (inputs derivation-inputs) ; list of <derivation-input>
143 (sources derivation-sources) ; list of store paths
144 (system derivation-system) ; string
145 (builder derivation-builder) ; store path
146 (args derivation-builder-arguments) ; list of strings
6a446d56
LC
147 (env-vars derivation-builder-environment-vars) ; list of name/value pairs
148 (file-name derivation-file-name)) ; the .drv file name
77d3cf08 149
3d19b7fb 150(define-immutable-record-type <derivation-output>
36bbbbd1 151 (make-derivation-output path hash-algo hash recursive?)
77d3cf08
LC
152 derivation-output?
153 (path derivation-output-path) ; store path
154 (hash-algo derivation-output-hash-algo) ; symbol | #f
36bbbbd1
LC
155 (hash derivation-output-hash) ; bytevector | #f
156 (recursive? derivation-output-recursive?)) ; Boolean
77d3cf08 157
3d19b7fb 158(define-immutable-record-type <derivation-input>
5cf4b26d 159 (make-derivation-input drv sub-derivations)
77d3cf08 160 derivation-input?
5cf4b26d 161 (drv derivation-input-derivation) ; <derivation>
77d3cf08
LC
162 (sub-derivations derivation-input-sub-derivations)) ; list of strings
163
5cf4b26d
LC
164
165(define (derivation-input-path input)
166 "Return the file name of the derivation INPUT refers to."
167 (derivation-file-name (derivation-input-derivation input)))
2ef22a9f 168
c89985d9
LC
169(define* (derivation-input drv #:optional
170 (outputs (derivation-output-names drv)))
171 "Return a <derivation-input> for the OUTPUTS of DRV."
172 ;; This is a public interface meant to be more convenient than
173 ;; 'make-derivation-input' and giving us more control.
5cf4b26d
LC
174 (make-derivation-input drv outputs))
175
176(define (derivation-input-key input)
177 "Return an object for which 'equal?' and 'hash' are constant-time, and which
178can thus be used as a key for INPUT in lookup tables."
179 (cons (derivation-input-path input)
180 (derivation-input-sub-derivations input)))
c89985d9 181
07c86312
LC
182(set-record-type-printer! <derivation>
183 (lambda (drv port)
184 (format port "#<derivation ~a => ~a ~a>"
185 (derivation-file-name drv)
186 (string-join
187 (map (match-lambda
188 ((_ . output)
189 (derivation-output-path output)))
190 (derivation-outputs drv)))
191 (number->string (object-address drv) 16))))
192
e786293e
LC
193(define (derivation-name drv)
194 "Return the base name of DRV."
195 (let ((base (store-path-package-name (derivation-file-name drv))))
196 (string-drop-right base 4)))
197
0b6af195
LC
198(define (derivation-output-names drv)
199 "Return the names of the outputs of DRV."
200 (match (derivation-outputs drv)
201 (((names . _) ...)
202 names)))
203
77d3cf08
LC
204(define (fixed-output-derivation? drv)
205 "Return #t if DRV is a fixed-output derivation, such as the result of a
206download with a fixed hash (aka. `fetchurl')."
207 (match drv
208 (($ <derivation>
99e17dc9 209 (("out" . ($ <derivation-output> _ (? symbol?) (? bytevector?)))))
77d3cf08
LC
210 #t)
211 (_ #f)))
212
97507ebe
LC
213(define (derivation-input<? input1 input2)
214 "Compare INPUT1 and INPUT2, two <derivation-input>."
215 (string<? (derivation-input-path input1)
216 (derivation-input-path input2)))
217
dd36b51b
LC
218(define (derivation-input-output-paths input)
219 "Return the list of output paths corresponding to INPUT, a
220<derivation-input>."
221 (match input
5cf4b26d
LC
222 (($ <derivation-input> drv sub-drvs)
223 (map (cut derivation->output-path drv <>)
dd36b51b
LC
224 sub-drvs))))
225
b9373e26
LC
226(define (derivation-input-output-path input)
227 "Return the output file name of INPUT. If INPUT has more than one outputs,
228an error is raised."
229 (match input
230 (($ <derivation-input> drv (output))
231 (derivation->output-path drv output))))
232
3681db5d
LC
233(define (valid-derivation-input? store input)
234 "Return true if INPUT is valid--i.e., if all the outputs it requests are in
235the store."
236 (every (cut valid-path? store <>)
237 (derivation-input-output-paths input)))
238
97507ebe
LC
239(define (coalesce-duplicate-inputs inputs)
240 "Return a list of inputs, such that when INPUTS contains the same DRV twice,
241they are coalesced, with their sub-derivations merged. This is needed because
242Nix itself keeps only one of them."
243 (fold (lambda (input result)
244 (match input
5cf4b26d 245 (($ <derivation-input> (= derivation-file-name path) sub-drvs)
97507ebe
LC
246 ;; XXX: quadratic
247 (match (find (match-lambda
5cf4b26d
LC
248 (($ <derivation-input> (= derivation-file-name p)
249 s)
97507ebe
LC
250 (string=? p path)))
251 result)
252 (#f
253 (cons input result))
5cf4b26d 254 ((and dup ($ <derivation-input> drv sub-drvs2))
97507ebe
LC
255 ;; Merge DUP with INPUT.
256 (let ((sub-drvs (delete-duplicates
257 (append sub-drvs sub-drvs2))))
5cf4b26d 258 (cons (make-derivation-input drv (sort sub-drvs string<?))
97507ebe
LC
259 (delq dup result))))))))
260 '()
261 inputs))
262
3681db5d
LC
263(define* (derivation-prerequisites drv #:optional (cut? (const #f)))
264 "Return the list of derivation-inputs required to build DRV, recursively.
265
266CUT? is a predicate that is passed a derivation-input and returns true to
267eliminate the given input and its dependencies from the search. An example of
e21888dd 268such a predicate is 'valid-derivation-input?'; when it is used as CUT?, the
3681db5d 269result is the set of prerequisites of DRV not already in valid."
ed3592a9
LC
270 (let loop ((drv drv)
271 (result '())
272 (input-set (set)))
3681db5d 273 (let ((inputs (remove (lambda (input)
5cf4b26d
LC
274 (or (set-contains? input-set
275 (derivation-input-key input))
3681db5d 276 (cut? input)))
9a20830e 277 (derivation-inputs drv))))
ed3592a9
LC
278 (fold2 loop
279 (append inputs result)
5cf4b26d
LC
280 (fold set-insert input-set
281 (map derivation-input-key inputs))
2ef22a9f 282 (map derivation-input-derivation inputs)))))
9a20830e 283
fc93e309
LC
284(define (offloadable-derivation? drv)
285 "Return true if DRV can be offloaded, false otherwise."
286 (match (assoc "preferLocalBuild"
287 (derivation-builder-environment-vars drv))
288 (("preferLocalBuild" . "1") #f)
289 (_ #t)))
290
4a6aeb67
LC
291(define (substitutable-derivation? drv)
292 "Return #t if DRV can be substituted."
293 (match (assoc "allowSubstitutes"
294 (derivation-builder-environment-vars drv))
295 (("allowSubstitutes" . value)
296 (string=? value "1"))
297 (_ #t)))
fc93e309 298
e9651e39
LC
299(define (derivation-output-paths drv sub-drvs)
300 "Return the output paths of outputs SUB-DRVS of DRV."
301 (match drv
302 (($ <derivation> outputs)
303 (map (lambda (sub-drv)
304 (derivation-output-path (assoc-ref outputs sub-drv)))
305 sub-drvs))))
306
fcbe4f71
LC
307(define* (derivation-input-fold proc seed inputs
308 #:key (cut? (const #f)))
309 "Perform a breadth-first traversal of INPUTS, calling PROC on each input
310with the current result, starting from SEED. Skip recursion on inputs that
311match CUT?."
312 (let loop ((inputs inputs)
313 (result seed)
314 (visited (set)))
315 (match inputs
316 (()
317 result)
318 ((input rest ...)
319 (let ((key (derivation-input-key input)))
320 (cond ((set-contains? visited key)
321 (loop rest result visited))
322 ((cut? input)
323 (loop rest result (set-insert key visited)))
324 (else
325 (let ((drv (derivation-input-derivation input)))
326 (loop (append (derivation-inputs drv) rest)
327 (proc input result)
328 (set-insert key visited))))))))))
329
d74392a8 330(define* (substitution-oracle store inputs-or-drv
58c08df0 331 #:key (mode (build-mode normal)))
e9651e39 332 "Return a one-argument procedure that, when passed a store file name,
ef51ac21 333returns a 'substitutable?' if it's substitutable and #f otherwise.
d74392a8
LC
334
335The returned procedure knows about all substitutes for all the derivation
336inputs or derivations listed in INPUTS-OR-DRV, *except* those that are already
337valid (that is, it won't bother checking whether an item is substitutable if
338it's already on disk); it also knows about their prerequisites, unless they
339are themselves substitutable.
e9651e39 340
ef51ac21 341Creating a single oracle (thus making a single 'substitutable-path-info' call) and
e9651e39
LC
342reusing it is much more efficient than calling 'has-substitutes?' or similar
343repeatedly, because it avoids the costs associated with launching the
344substituter many times."
c3a450fb
LC
345 (define valid-input?
346 (cut valid-derivation-input? store <>))
347
d74392a8 348 (define (closure inputs)
fcbe4f71
LC
349 (reverse
350 (derivation-input-fold (lambda (input closure)
351 (let ((drv (derivation-input-derivation input)))
352 (if (substitutable-derivation? drv)
353 (cons input closure)
354 closure)))
355 '()
356 inputs
357 #:cut? valid-input?)))
d74392a8
LC
358
359 (let* ((inputs (closure (map (match-lambda
360 ((? derivation-input? input)
361 input)
362 ((? derivation? drv)
363 (derivation-input drv)))
364 inputs-or-drv)))
365 (items (append-map derivation-input-output-paths inputs))
366 (subst (fold (lambda (subst vhash)
367 (vhash-cons (substitutable-path subst) subst
368 vhash))
369 vlist-null
370 (substitutable-path-info store items))))
ef51ac21
LC
371 (lambda (item)
372 (match (vhash-assoc item subst)
373 (#f #f)
374 ((key . value) value)))))
e9651e39 375
b1510fd8
LC
376(define (dependencies-of-substitutables substitutables inputs)
377 "Return the subset of INPUTS whose output file names is among the references
378of SUBSTITUTABLES."
379 (let ((items (fold set-insert (set)
380 (append-map substitutable-references substitutables))))
381 (filter (lambda (input)
382 (any (cut set-contains? items <>)
383 (derivation-input-output-paths input)))
384 inputs)))
385
ba04f80e
LC
386(define* (derivation-build-plan store inputs
387 #:key
388 (mode (build-mode normal))
389 (substitutable-info
390 (substitution-oracle
d74392a8 391 store inputs #:mode mode)))
ba04f80e 392 "Given INPUTS, a list of derivation-inputs, return two values: the list of
23ab21fa
LC
393derivations to build, and the list of substitutable items that, together,
394allow INPUTS to be realized.
ba04f80e
LC
395
396SUBSTITUTABLE-INFO must be a one-argument procedure similar to that returned
397by 'substitution-oracle'."
398 (define (built? item)
399 (valid-path? store item))
400
401 (define (input-built? input)
58c08df0
LC
402 ;; In 'check' mode, assume that DRV is not built.
403 (and (not (and (eqv? mode (build-mode check))
ba04f80e
LC
404 (member input inputs)))
405 (every built? (derivation-input-output-paths input))))
406
407 (define (input-substitutable-info input)
408 (and (substitutable-derivation? (derivation-input-derivation input))
409 (let* ((items (derivation-input-output-paths input))
410 (info (filter-map substitutable-info items)))
411 (and (= (length info) (length items))
2dc98729 412 info))))
dd36b51b 413
ba04f80e
LC
414 (let loop ((inputs inputs) ;list of <derivation-input>
415 (build '()) ;list of <derivation>
416 (substitute '()) ;list of <substitutable>
417 (visited (set))) ;set of <derivation-input>
418 (match inputs
419 (()
420 (values build substitute))
421 ((input rest ...)
b1510fd8
LC
422 (let ((key (derivation-input-key input))
423 (deps (derivation-inputs
424 (derivation-input-derivation input))))
5cf4b26d
LC
425 (cond ((set-contains? visited key)
426 (loop rest build substitute visited))
427 ((input-built? input)
428 (loop rest build substitute
429 (set-insert key visited)))
430 ((input-substitutable-info input)
431 =>
432 (lambda (substitutables)
b1510fd8
LC
433 (loop (append (dependencies-of-substitutables substitutables
434 deps)
435 rest)
436 build
5cf4b26d
LC
437 (append substitutables substitute)
438 (set-insert key visited))))
439 (else
b1510fd8
LC
440 (loop (append deps rest)
441 (cons (derivation-input-derivation input) build)
442 substitute
443 (set-insert key visited)))))))))
ba04f80e
LC
444
445(define-deprecated (derivation-prerequisites-to-build store drv #:rest rest)
446 derivation-build-plan
447 (let-values (((build download)
448 (apply derivation-build-plan store
449 (list (derivation-input drv)) rest)))
450 (values (map derivation-input build) download)))
9a20830e 451
5cf4b26d
LC
452(define* (read-derivation drv-port
453 #:optional (read-derivation-from-file
454 read-derivation-from-file))
015f17e8 455 "Read the derivation from DRV-PORT and return the corresponding <derivation>
5cf4b26d
LC
456object. Call READ-DERIVATION-FROM-FILE to read derivations declared as inputs
457of the derivation being parsed.
458
459Most of the time you'll want to use 'read-derivation-from-file', which caches
460things as appropriate and is thus more efficient."
77d3cf08
LC
461
462 (define comma (string->symbol ","))
463
464 (define (ununquote x)
465 (match x
466 (('unquote x) (ununquote x))
467 ((x ...) (map ununquote x))
468 (_ x)))
469
470 (define (outputs->alist x)
471 (fold-right (lambda (output result)
472 (match output
473 ((name path "" "")
474 (alist-cons name
36bbbbd1 475 (make-derivation-output path #f #f #f)
77d3cf08
LC
476 result))
477 ((name path hash-algo hash)
478 ;; fixed-output
36bbbbd1
LC
479 (let* ((rec? (string-prefix? "r:" hash-algo))
480 (algo (string->symbol
481 (if rec?
482 (string-drop hash-algo 2)
483 hash-algo)))
484 (hash (base16-string->bytevector hash)))
77d3cf08 485 (alist-cons name
36bbbbd1
LC
486 (make-derivation-output path algo
487 hash rec?)
77d3cf08
LC
488 result)))))
489 '()
490 x))
491
492 (define (make-input-drvs x)
493 (fold-right (lambda (input result)
494 (match input
495 ((path (sub-drvs ...))
5cf4b26d
LC
496 (let ((drv (read-derivation-from-file path)))
497 (cons (make-derivation-input drv sub-drvs)
498 result)))))
77d3cf08
LC
499 '()
500 x))
501
df7bbd38
LC
502 ;; The contents of a derivation are typically ASCII, but choosing
503 ;; UTF-8 allows us to take the fast path for Guile's `scm_getc'.
504 (set-port-encoding! drv-port "UTF-8")
505
77d3cf08
LC
506 (let loop ((exp (read drv-port))
507 (result '()))
508 (match exp
509 ((? eof-object?)
510 (let ((result (reverse result)))
511 (match result
512 (('Derive ((outputs ...) (input-drvs ...)
513 (input-srcs ...)
514 (? string? system)
515 (? string? builder)
516 ((? string? args) ...)
517 ((var value) ...)))
518 (make-derivation (outputs->alist outputs)
519 (make-input-drvs input-drvs)
520 input-srcs
521 system builder args
6a446d56
LC
522 (fold-right alist-cons '() var value)
523 (port-filename drv-port)))
77d3cf08
LC
524 (_
525 (error "failed to parse derivation" drv-port result)))))
526 ((? (cut eq? <> comma))
527 (loop (read drv-port) result))
528 (_
529 (loop (read drv-port)
530 (cons (ununquote exp) result))))))
531
76c31074
LC
532(define %derivation-cache
533 ;; Maps derivation file names to <derivation> objects.
534 ;; XXX: This is redundant with 'atts-cache' in the store.
535 (make-weak-value-hash-table 200))
536
015f17e8
LC
537(define (read-derivation-from-file file)
538 "Read the derivation in FILE, a '.drv' file, and return the corresponding
d0840e4a 539<derivation> object."
015f17e8 540 ;; Memoize that operation because 'read-derivation' is quite expensive,
76c31074
LC
541 ;; and because the same argument is read more than 15 times on average
542 ;; during something like (package-derivation s gdb).
015f17e8
LC
543 (or (and file (hash-ref %derivation-cache file))
544 (let ((drv (call-with-input-file file read-derivation)))
545 (hash-set! %derivation-cache file drv)
546 drv)))
d0840e4a 547
d8085599
LC
548(define-inlinable (write-sequence lst write-item port)
549 ;; Write each element of LST with WRITE-ITEM to PORT, separating them with a
550 ;; comma.
551 (match lst
552 (()
553 #t)
554 ((prefix (... ...) last)
555 (for-each (lambda (item)
556 (write-item item port)
557 (display "," port))
558 prefix)
559 (write-item last port))))
560
561(define-inlinable (write-list lst write-item port)
562 ;; Write LST as a derivation list to PORT, using WRITE-ITEM to write each
563 ;; element.
564 (display "[" port)
565 (write-sequence lst write-item port)
566 (display "]" port))
567
568(define-inlinable (write-tuple lst write-item port)
569 ;; Same, but write LST as a tuple.
570 (display "(" port)
571 (write-sequence lst write-item port)
572 (display ")" port))
573
77d3cf08
LC
574(define (write-derivation drv port)
575 "Write the ATerm-like serialization of DRV to PORT. See Section 2.4 of
576Eelco Dolstra's PhD dissertation for an overview of a previous version of
577that form."
aaa848f3
LC
578
579 ;; Make sure we're using the faster implementation.
580 (define format simple-format)
581
d8085599
LC
582 (define (write-string-list lst)
583 (write-list lst write port))
77d3cf08 584
d8085599
LC
585 (define (write-output output port)
586 (match output
36bbbbd1 587 ((name . ($ <derivation-output> path hash-algo hash recursive?))
d8085599 588 (write-tuple (list name path
36bbbbd1
LC
589 (if hash-algo
590 (string-append (if recursive? "r:" "")
591 (symbol->string hash-algo))
592 "")
d8085599
LC
593 (or (and=> hash bytevector->base16-string)
594 ""))
595 write
596 port))))
597
598 (define (write-input input port)
599 (match input
5cf4b26d 600 (($ <derivation-input> obj sub-drvs)
6d943e55 601 (display "(\"" port)
5cf4b26d
LC
602
603 ;; 'derivation/masked-inputs' produces objects that contain a string
604 ;; instead of a <derivation>, so we need to account for that.
605 (display (if (derivation? obj)
606 (derivation-file-name obj)
607 obj)
608 port)
6d943e55 609 (display "\"," port)
97507ebe 610 (write-string-list sub-drvs)
d8085599
LC
611 (display ")" port))))
612
613 (define (write-env-var env-var port)
614 (match env-var
615 ((name . value)
616 (display "(" port)
617 (write name port)
618 (display "," port)
619 (write value port)
620 (display ")" port))))
621
97507ebe 622 ;; Assume all the lists we are writing are already sorted.
77d3cf08
LC
623 (match drv
624 (($ <derivation> outputs inputs sources
625 system builder args env-vars)
626 (display "Derive(" port)
97507ebe 627 (write-list outputs write-output port)
77d3cf08 628 (display "," port)
97507ebe 629 (write-list inputs write-input port)
77d3cf08 630 (display "," port)
97507ebe 631 (write-string-list sources)
6d943e55 632 (simple-format port ",\"~a\",\"~a\"," system builder)
d8085599 633 (write-string-list args)
77d3cf08 634 (display "," port)
97507ebe 635 (write-list env-vars write-env-var port)
77d3cf08
LC
636 (display ")" port))))
637
2dce88d5 638(define derivation->bytevector
d727a934 639 (lambda (drv)
2dce88d5 640 "Return the external representation of DRV as a UTF-8-encoded string."
55b2d921 641 (with-fluids ((%default-port-encoding "UTF-8"))
2dce88d5
LC
642 (call-with-values open-bytevector-output-port
643 (lambda (port get-bytevector)
644 (write-derivation drv port)
645 (get-bytevector))))))
be4e38fb 646
59688fc4 647(define* (derivation->output-path drv #:optional (output "out"))
f304c9c2
LC
648 "Return the store path of its output OUTPUT. Raise a
649'&derivation-missing-output-error' condition if OUTPUT is not an output of
650DRV."
651 (let ((output* (assoc-ref (derivation-outputs drv) output)))
652 (if output*
653 (derivation-output-path output*)
654 (raise (condition (&derivation-missing-output-error
655 (derivation drv)
656 (output output)))))))
59688fc4
LC
657
658(define (derivation->output-paths drv)
659 "Return the list of name/path pairs of the outputs of DRV."
660 (map (match-lambda
661 ((name . output)
662 (cons name (derivation-output-path output))))
663 (derivation-outputs drv)))
664
aaa848f3
LC
665(define derivation-path->output-path
666 ;; This procedure is called frequently, so memoize it.
55b2d921 667 (let ((memoized (mlambda (path output)
015f17e8 668 (derivation->output-path (read-derivation-from-file path)
55b2d921
LC
669 output))))
670 (lambda* (path #:optional (output "out"))
671 "Read the derivation from PATH (`/gnu/store/xxx.drv'), and return the store
de4c3f26 672path of its output OUTPUT."
55b2d921 673 (memoized path output))))
de4c3f26 674
7244a5f7 675(define (derivation-path->output-paths path)
6f58d582 676 "Read the derivation from PATH (`/gnu/store/xxx.drv'), and return the
7244a5f7 677list of name/path pairs of its outputs."
015f17e8 678 (derivation->output-paths (read-derivation-from-file path)))
7244a5f7 679
de4c3f26
LC
680\f
681;;;
682;;; Derivation primitive.
683;;;
684
c14a2b28
LC
685(define derivation-base16-hash
686 (mlambdaq (drv)
687 "Return a string containing the base16 representation of the hash of DRV."
688 (bytevector->base16-string (derivation-hash drv))))
1391dcb0 689
eb1150c2
LC
690(define (derivation/masked-inputs drv)
691 "Assuming DRV is a regular derivation (not fixed-output), replace the file
692name of each input with that input's hash."
693 (match drv
694 (($ <derivation> outputs inputs sources
695 system builder args env-vars)
696 (let ((inputs (map (match-lambda
c14a2b28
LC
697 (($ <derivation-input> drv sub-drvs)
698 (let ((hash (derivation-base16-hash drv)))
eb1150c2
LC
699 (make-derivation-input hash sub-drvs))))
700 inputs)))
701 (make-derivation outputs
26889644 702 (sort (delete-duplicates inputs)
5cf4b26d
LC
703 (lambda (drv1 drv2)
704 (string<? (derivation-input-derivation drv1)
705 (derivation-input-derivation drv2))))
eb1150c2
LC
706 sources
707 system builder args env-vars
708 #f)))))
709
de4c3f26 710(define derivation-hash ; `hashDerivationModulo' in derivations.cc
90354e34 711 (lambda (drv)
de4c3f26
LC
712 "Return the hash of DRV, modulo its fixed-output inputs, as a bytevector."
713 (match drv
714 (($ <derivation> ((_ . ($ <derivation-output> path
55b2d921
LC
715 (? symbol? hash-algo) (? bytevector? hash)
716 (? boolean? recursive?)))))
de4c3f26 717 ;; A fixed-output derivation.
77d3cf08 718 (sha256
de4c3f26 719 (string->utf8
36bbbbd1
LC
720 (string-append "fixed:out:"
721 (if recursive? "r:" "")
722 (symbol->string hash-algo)
749c6567
LC
723 ":" (bytevector->base16-string hash)
724 ":" path))))
eb1150c2
LC
725 (_
726
727 ;; XXX: At this point this remains faster than `port-sha256', because
728 ;; the SHA256 port's `write' method gets called for every single
729 ;; character.
730 (sha256 (derivation->bytevector (derivation/masked-inputs drv)))))))
77d3cf08 731
93c2a007
LC
732
733(define (warn-about-derivation-deprecation name)
734 ;; TRANSLATORS: 'derivation' must not be translated; it refers to the
735 ;; 'derivation' procedure.
736 (warning (G_ "in '~a': deprecated 'derivation' calling convention used~%")
737 name))
738
a987d2c0
LC
739(define* (derivation store name builder args
740 #:key
741 (system (%current-system)) (env-vars '())
4daf89d6
LC
742 (inputs '()) (sources '())
743 (outputs '("out"))
2096ef47 744 hash hash-algo recursive?
35b5ca78
LC
745 references-graphs
746 allowed-references disallowed-references
4a6aeb67 747 leaked-env-vars local-build?
8856f409 748 (substitutable? #t)
93c2a007
LC
749 (properties '())
750 (%deprecation-warning? #t))
59688fc4 751 "Build a derivation with the given arguments, and return the resulting
2096ef47 752<derivation> object. When HASH and HASH-ALGO are given, a
59688fc4 753fixed-output derivation is created---i.e., one whose result is known in
36bbbbd1
LC
754advance, such as a file download. If, in addition, RECURSIVE? is true, then
755that fixed output may be an executable file or a directory and HASH must be
756the hash of an archive containing this output.
5b0c9d16 757
858e9282 758When REFERENCES-GRAPHS is true, it must be a list of file name/store path
5b0c9d16 759pairs. In that case, the reference graph of each store path is exported in
1909431c
LC
760the build environment in the corresponding file, in a simple text format.
761
b53be755 762When ALLOWED-REFERENCES is true, it must be a list of store items or outputs
35b5ca78
LC
763that the derivation's outputs may refer to. Likewise, DISALLOWED-REFERENCES,
764if true, must be a list of things the outputs may not refer to.
b53be755 765
c0468155
LC
766When LEAKED-ENV-VARS is true, it must be a list of strings denoting
767environment variables that are allowed to \"leak\" from the daemon's
768environment to the build environment. This is only applicable to fixed-output
769derivations--i.e., when HASH is true. The main use is to allow variables such
770as \"http_proxy\" to be passed to derivations that download files.
771
1909431c
LC
772When LOCAL-BUILD? is true, declare that the derivation is not a good candidate
773for offloading and should rather be built locally. This is the case for small
4a6aeb67
LC
774derivations where the costs of data transfers would outweigh the benefits.
775
776When SUBSTITUTABLE? is false, declare that substitutes of the derivation's
8856f409
LC
777output should not be used.
778
779PROPERTIES must be an association list describing \"properties\" of the
780derivation. It is kept as-is, uninterpreted, in the derivation."
26bbbb95
LC
781 (define (add-output-paths drv)
782 ;; Return DRV with an actual store path for each of its output and the
783 ;; corresponding environment variable.
784 (match drv
785 (($ <derivation> outputs inputs sources
786 system builder args env-vars)
787 (let* ((drv-hash (derivation-hash drv))
788 (outputs (map (match-lambda
d9085c23 789 ((output-name . ($ <derivation-output>
36bbbbd1 790 _ algo hash rec?))
260bc60f
LC
791 (let ((path
792 (if hash
793 (fixed-output-path name hash
794 #:hash-algo algo
795 #:output output-name
796 #:recursive? rec?)
797 (output-path output-name
798 drv-hash name))))
d9085c23
LC
799 (cons output-name
800 (make-derivation-output path algo
36bbbbd1 801 hash rec?)))))
d9085c23 802 outputs)))
26bbbb95
LC
803 (make-derivation outputs inputs sources system builder args
804 (map (match-lambda
805 ((name . value)
806 (cons name
807 (or (and=> (assoc-ref outputs name)
808 derivation-output-path)
809 value))))
6a446d56
LC
810 env-vars)
811 #f)))))
26bbbb95 812
5b0c9d16
LC
813 (define (user+system-env-vars)
814 ;; Some options are passed to the build daemon via the env. vars of
815 ;; derivations (urgh!). We hide that from our API, but here is the place
816 ;; where we kludgify those options.
b53be755
LC
817 (let ((env-vars `(,@(if local-build?
818 `(("preferLocalBuild" . "1"))
819 '())
4a6aeb67
LC
820 ,@(if (not substitutable?)
821 `(("allowSubstitutes" . "0"))
822 '())
b53be755
LC
823 ,@(if allowed-references
824 `(("allowedReferences"
825 . ,(string-join allowed-references)))
826 '())
35b5ca78
LC
827 ,@(if disallowed-references
828 `(("disallowedReferences"
829 . ,(string-join disallowed-references)))
830 '())
c0468155
LC
831 ,@(if leaked-env-vars
832 `(("impureEnvVars"
833 . ,(string-join leaked-env-vars)))
834 '())
8856f409
LC
835 ,@(match properties
836 (() '())
837 (lst `(("guix properties"
838 . ,(object->string properties)))))
b53be755 839 ,@env-vars)))
1909431c
LC
840 (match references-graphs
841 (((file . path) ...)
842 (let ((value (map (cut string-append <> " " <>)
843 file path)))
844 ;; XXX: This all breaks down if an element of FILE or PATH contains
845 ;; white space.
846 `(("exportReferencesGraph" . ,(string-join value " "))
847 ,@env-vars)))
848 (#f
849 env-vars))))
5b0c9d16
LC
850
851 (define (env-vars-with-empty-outputs env-vars)
26bbbb95 852 ;; Return a variant of ENV-VARS where each OUTPUTS is associated with an
561eaf71 853 ;; empty string, even outputs that do not appear in ENV-VARS.
26bbbb95
LC
854 (let ((e (map (match-lambda
855 ((name . val)
856 (if (member name outputs)
857 (cons name "")
858 (cons name val))))
859 env-vars)))
561eaf71
LC
860 (fold (lambda (output-name env-vars)
861 (if (assoc output-name env-vars)
862 env-vars
863 (append env-vars `((,output-name . "")))))
864 e
865 outputs)))
26bbbb95 866
93c2a007
LC
867 (define-syntax-rule (warn-deprecation name)
868 (when %deprecation-warning?
869 (warn-about-derivation-deprecation name)))
870
97507ebe
LC
871 (define input->derivation-input
872 (match-lambda
4daf89d6
LC
873 ((? derivation-input? input)
874 input)
97507ebe 875 (((? derivation? drv))
93c2a007 876 (warn-deprecation name)
5cf4b26d 877 (make-derivation-input drv '("out")))
97507ebe 878 (((? derivation? drv) sub-drvs ...)
93c2a007 879 (warn-deprecation name)
5cf4b26d 880 (make-derivation-input drv sub-drvs))
93c2a007
LC
881 (_
882 (warn-deprecation name)
883 #f)))
5cf4b26d
LC
884
885 (define input->source
886 (match-lambda
887 (((? string? input) . _)
93c2a007 888 (warn-deprecation name)
5cf4b26d
LC
889 (if (direct-store-path? input)
890 input
891 (add-to-store store (basename input)
892 #t "sha256" input)))
893 (_ #f)))
97507ebe
LC
894
895 ;; Note: lists are sorted alphabetically, to conform with the behavior of
896 ;; C++ `std::map' in Nix itself.
897
26bbbb95
LC
898 (let* ((outputs (map (lambda (name)
899 ;; Return outputs with an empty path.
900 (cons name
36bbbbd1
LC
901 (make-derivation-output "" hash-algo
902 hash recursive?)))
97507ebe 903 (sort outputs string<?)))
5cf4b26d 904 (sources (sort (delete-duplicates
4daf89d6
LC
905 (append (filter-map input->source inputs)
906 sources))
5cf4b26d 907 string<?))
97507ebe 908 (inputs (sort (coalesce-duplicate-inputs
5cf4b26d 909 (filter-map input->derivation-input inputs))
97507ebe
LC
910 derivation-input<?))
911 (env-vars (sort (env-vars-with-empty-outputs
912 (user+system-env-vars))
913 (lambda (e1 e2)
914 (string<? (car e1) (car e2)))))
5cf4b26d 915 (drv-masked (make-derivation outputs inputs sources
6a446d56 916 system builder args env-vars #f))
26bbbb95 917 (drv (add-output-paths drv-masked)))
de4c3f26 918
2dce88d5
LC
919 (let* ((file (add-data-to-store store (string-append name ".drv")
920 (derivation->bytevector drv)
5cf4b26d
LC
921 (append (map derivation-input-path inputs)
922 sources)))
dc673fa1 923 (drv* (set-field drv (derivation-file-name) file)))
fd951cd5
LC
924 ;; Preserve pointer equality. This improves the performance of
925 ;; 'eq?'-memoization on derivations.
926 (or (hash-ref %derivation-cache file)
927 (begin
928 (hash-set! %derivation-cache file drv*)
929 drv*)))))
59688fc4 930
34797d8a
LC
931(define (invalidate-derivation-caches!)
932 "Invalidate internal derivation caches. This is mostly useful for
933long-running processes that know what they're doing. Use with care!"
934 ;; Typically this is meant to be used by Cuirass and Hydra, which can clear
935 ;; caches when they start evaluating packages for another architecture.
c14a2b28 936 (invalidate-memoization! derivation-base16-hash)
e79281be
LC
937
938 ;; FIXME: Comment out to work around <https://bugs.gnu.org/36487>.
939 ;; (hash-clear! %derivation-cache)
940 )
34797d8a 941
8856f409
LC
942(define derivation-properties
943 (mlambdaq (drv)
944 "Return the property alist associated with DRV."
945 (match (assoc "guix properties"
946 (derivation-builder-environment-vars drv))
947 ((_ . str) (call-with-input-string str read))
948 (#f '()))))
949
e387ab7c
LC
950(define* (map-derivation store drv mapping
951 #:key (system (%current-system)))
952 "Given MAPPING, a list of pairs of derivations, return a derivation based on
953DRV where all the 'car's of MAPPING have been replaced by its 'cdr's,
954recursively."
955 (define (substitute str initial replacements)
956 (fold (lambda (path replacement result)
957 (string-replace-substring result path
958 replacement))
959 str
960 initial replacements))
961
962 (define (substitute-file file initial replacements)
963 (define contents
964 (with-fluids ((%default-port-encoding #f))
2535635f 965 (call-with-input-file file read-string)))
e387ab7c
LC
966
967 (let ((updated (substitute contents initial replacements)))
968 (if (string=? updated contents)
969 file
970 ;; XXX: permissions aren't preserved.
971 (add-text-to-store store (store-path-package-name file)
972 updated))))
973
974 (define input->output-paths
975 (match-lambda
d1458321
LC
976 ((? derivation-input? input)
977 (derivation-input-output-paths input))
978 ((? string? file)
979 (list file))))
e387ab7c
LC
980
981 (let ((mapping (fold (lambda (pair result)
982 (match pair
a716e36d 983 (((? derivation? orig) . replacement)
e387ab7c 984 (vhash-cons (derivation-file-name orig)
a716e36d
LC
985 replacement result))
986 ((file . replacement)
987 (vhash-cons file replacement result))))
e387ab7c
LC
988 vlist-null
989 mapping)))
990 (define rewritten-input
991 ;; Rewrite the given input according to MAPPING, and return an input
992 ;; in the format used in 'derivation' calls.
55b2d921
LC
993 (mlambda (input loop)
994 (match input
1653b235
LC
995 (($ <derivation-input> drv (sub-drvs ...))
996 (match (vhash-assoc (derivation-file-name drv) mapping)
55b2d921 997 ((_ . (? derivation? replacement))
d1458321
LC
998 (derivation-input replacement sub-drvs))
999 ((_ . (? string? source))
1000 source)
55b2d921 1001 (#f
d1458321 1002 (derivation-input (loop drv) sub-drvs)))))))
e387ab7c
LC
1003
1004 (let loop ((drv drv))
1005 (let* ((inputs (map (cut rewritten-input <> loop)
1006 (derivation-inputs drv)))
1007 (initial (append-map derivation-input-output-paths
1008 (derivation-inputs drv)))
1009 (replacements (append-map input->output-paths inputs))
1010
1011 ;; Sources typically refer to the output directories of the
1012 ;; original inputs, INITIAL. Rewrite them by substituting
1013 ;; REPLACEMENTS.
a716e36d
LC
1014 (sources (map (lambda (source)
1015 (match (vhash-assoc source mapping)
1016 ((_ . replacement)
1017 replacement)
1018 (#f
1019 (substitute-file source
1020 initial replacements))))
e387ab7c
LC
1021 (derivation-sources drv)))
1022
1023 ;; Now augment the lists of initials and replacements.
1024 (initial (append (derivation-sources drv) initial))
1025 (replacements (append sources replacements))
1026 (name (store-path-package-name
1027 (string-drop-right (derivation-file-name drv)
1028 4))))
1029 (derivation store name
1030 (substitute (derivation-builder drv)
1031 initial replacements)
1032 (map (cut substitute <> initial replacements)
1033 (derivation-builder-arguments drv))
1034 #:system system
1035 #:env-vars (map (match-lambda
1036 ((var . value)
1037 `(,var
1038 . ,(substitute value initial
1039 replacements))))
1040 (derivation-builder-environment-vars drv))
d1458321
LC
1041 #:inputs (filter derivation-input? inputs)
1042 #:sources (append sources (filter string? inputs))
0b6af195 1043 #:outputs (derivation-output-names drv)
e387ab7c
LC
1044 #:hash (match (derivation-outputs drv)
1045 ((($ <derivation-output> _ algo hash))
1046 hash)
1047 (_ #f))
1048 #:hash-algo (match (derivation-outputs drv)
1049 ((($ <derivation-output> _ algo hash))
1050 algo)
1051 (_ #f)))))))
1052
59688fc4
LC
1053\f
1054;;;
1055;;; Store compatibility layer.
1056;;;
1057
a8d65643
LC
1058(define* (build-derivations store derivations
1059 #:optional (mode (build-mode normal)))
7c9fbf3e
LC
1060 "Build DERIVATIONS, a list of <derivation> or <derivation-input> objects,
1061.drv file names, or derivation/output pairs, using the specified MODE."
01d8ac64 1062 (build-things store (map (match-lambda
f8a9f99c
LC
1063 ((? derivation? drv)
1064 (derivation-file-name drv))
7c690a47
LC
1065 ((? derivation-input? input)
1066 (cons (derivation-input-path input)
1067 (string-join
1068 (derivation-input-sub-derivations input)
1069 ",")))
01d8ac64 1070 ((? string? file) file)
f8a9f99c
LC
1071 (((? derivation? drv) . output)
1072 (cons (derivation-file-name drv)
1073 output))
1074 (((? string? file) . output)
1075 (cons file output)))
a8d65643
LC
1076 derivations)
1077 mode))
d9085c23
LC
1078
1079\f
1080;;;
1081;;; Guile-based builders.
1082;;;
1083
d9024884
LC
1084(define (parent-directories file-name)
1085 "Return the list of parent dirs of FILE-NAME, in the order in which an
1086`mkdir -p' implementation would make them."
1087 (let ((not-slash (char-set-complement (char-set #\/))))
1088 (reverse
1089 (fold (lambda (dir result)
1090 (match result
1091 (()
1092 (list dir))
1093 ((prev _ ...)
1094 (cons (string-append prev "/" dir)
1095 result))))
1096 '()
1097 (remove (cut string=? <> ".")
1098 (string-tokenize (dirname file-name) not-slash))))))
1099
aa72d9af 1100(define* (imported-files store files ;deprecated
b272c474
LC
1101 #:key (name "file-import")
1102 (system (%current-system))
1103 (guile (%guile-for-build)))
99634e3f
LC
1104 "Return a derivation that imports FILES into STORE. FILES must be a list
1105of (FINAL-PATH . FILE-NAME) pairs; each FILE-NAME is read from the file
1106system, imported, and appears under FINAL-PATH in the resulting store path."
99634e3f
LC
1107 (let* ((files (map (match-lambda
1108 ((final-path . file-name)
2acb2cb6 1109 (list final-path
a9ebd9ef 1110 (add-to-store store (basename final-path) #f
99634e3f
LC
1111 "sha256" file-name))))
1112 files))
1113 (builder
1114 `(begin
1115 (mkdir %output) (chdir %output)
1116 ,@(append-map (match-lambda
2acb2cb6 1117 ((final-path store-path)
d9024884 1118 (append (match (parent-directories final-path)
99634e3f
LC
1119 (() '())
1120 ((head ... tail)
1121 (append (map (lambda (d)
1122 `(false-if-exception
1123 (mkdir ,d)))
1124 head)
224f7ad6
LC
1125 `((or (file-exists? ,tail)
1126 (mkdir ,tail))))))
99634e3f
LC
1127 `((symlink ,store-path ,final-path)))))
1128 files))))
dd1a5a15
LC
1129 (build-expression->derivation store name builder
1130 #:system system
1131 #:inputs files
6ce206cb
LC
1132 #:guile-for-build guile
1133 #:local-build? #t)))
99634e3f 1134
d26e1967
LC
1135;; The "file not found" error condition.
1136(define-condition-type &file-search-error &error
1137 file-search-error?
1138 (file file-search-error-file-name)
1139 (path file-search-error-search-path))
1140
8601d0dd
LC
1141(define search-path*
1142 ;; A memoizing version of 'search-path' so 'imported-modules' does not end
1143 ;; up looking for the same files over and over again.
55b2d921
LC
1144 (mlambda (path file)
1145 "Search for FILE in PATH and memoize the result. Raise a
d26e1967 1146'&file-search-error' condition if it could not be found."
55b2d921
LC
1147 (or (search-path path file)
1148 (raise (condition
1149 (&file-search-error (file file)
1150 (path path)))))))
8601d0dd 1151
6985335f
LC
1152(define (module->source-file-name module)
1153 "Return the file name corresponding to MODULE, a Guile module name (a list
1154of symbols.)"
1155 (string-append (string-join (map symbol->string module) "/")
1156 ".scm"))
1157
aa72d9af 1158(define* (%imported-modules store modules ;deprecated
e87f0591
LC
1159 #:key (name "module-import")
1160 (system (%current-system))
1161 (guile (%guile-for-build))
1162 (module-path %load-path))
3eb98237 1163 "Return a derivation that contains the source files of MODULES, a list of
8dcb0c55 1164module names such as `(ice-9 q)'. All of MODULES must be in the MODULE-PATH
3eb98237
LC
1165search path."
1166 ;; TODO: Determine the closure of MODULES, build the `.go' files,
1167 ;; canonicalize the source files through read/write, etc.
1168 (let ((files (map (lambda (m)
6985335f 1169 (let ((f (module->source-file-name m)))
8601d0dd 1170 (cons f (search-path* module-path f))))
3eb98237 1171 modules)))
b272c474
LC
1172 (imported-files store files #:name name #:system system
1173 #:guile guile)))
3eb98237 1174
aa72d9af 1175(define* (%compiled-modules store modules ;deprecated
e87f0591
LC
1176 #:key (name "module-import-compiled")
1177 (system (%current-system))
1178 (guile (%guile-for-build))
1179 (module-path %load-path))
d9024884
LC
1180 "Return a derivation that builds a tree containing the `.go' files
1181corresponding to MODULES. All the MODULES are built in a context where
1182they can refer to each other."
e87f0591
LC
1183 (let* ((module-drv (%imported-modules store modules
1184 #:system system
1185 #:guile guile
1186 #:module-path module-path))
59688fc4 1187 (module-dir (derivation->output-path module-drv))
d9024884
LC
1188 (files (map (lambda (m)
1189 (let ((f (string-join (map symbol->string m)
1190 "/")))
1191 (cons (string-append f ".go")
1192 (string-append module-dir "/" f ".scm"))))
1193 modules)))
1194 (define builder
1195 `(begin
1196 (use-modules (system base compile))
1197 (let ((out (assoc-ref %outputs "out")))
1198 (mkdir out)
1199 (chdir out))
1200
1201 (set! %load-path
1202 (cons ,module-dir %load-path))
1203
1204 ,@(map (match-lambda
1205 ((output . input)
1206 (let ((make-parent-dirs (map (lambda (dir)
1207 `(unless (file-exists? ,dir)
1208 (mkdir ,dir)))
1209 (parent-directories output))))
1210 `(begin
1211 ,@make-parent-dirs
1212 (compile-file ,input
1213 #:output-file ,output
1214 #:opts %auto-compilation-options)))))
1215 files)))
1216
dd1a5a15
LC
1217 (build-expression->derivation store name builder
1218 #:inputs `(("modules" ,module-drv))
1219 #:system system
6ce206cb
LC
1220 #:guile-for-build guile
1221 #:local-build? #t)))
3eb98237 1222
f726f6f8
LC
1223(define %module-cache
1224 ;; Map a list of modules to its 'imported+compiled-modules' result.
66546776 1225 (make-hash-table))
f726f6f8 1226
cf7648f8
LC
1227(define* (imported+compiled-modules store modules #:key
1228 (system (%current-system))
1229 (guile (%guile-for-build)))
1230 "Return a pair containing the derivation to import MODULES and that where
1231MODULES are compiled."
f726f6f8
LC
1232 (define key
1233 (list modules (derivation-file-name guile) system))
1234
1235 (or (hash-ref %module-cache key)
1236 (let ((result (cons (%imported-modules store modules
1237 #:system system #:guile guile)
1238 (%compiled-modules store modules
1239 #:system system #:guile guile))))
1240 (hash-set! %module-cache key result)
1241 result)))
cf7648f8 1242
aa72d9af 1243(define* (build-expression->derivation store name exp ;deprecated
dd1a5a15
LC
1244 #:key
1245 (system (%current-system))
1246 (inputs '())
1247 (outputs '("out"))
36bbbbd1 1248 hash hash-algo recursive?
4c1eddf7 1249 (env-vars '())
6dd7787c 1250 (modules '())
9c629a27 1251 guile-for-build
1909431c 1252 references-graphs
63a42824 1253 allowed-references
35b5ca78 1254 disallowed-references
8856f409
LC
1255 local-build? (substitutable? #t)
1256 (properties '()))
874e6874
LC
1257 "Return a derivation that executes Scheme expression EXP as a builder
1258for derivation NAME. INPUTS must be a list of (NAME DRV-PATH SUB-DRV)
1259tuples; when SUB-DRV is omitted, \"out\" is assumed. MODULES is a list
1260of names of Guile modules from the current search path to be copied in
1261the store, compiled, and made available in the load path during the
1262execution of EXP.
1263
1264EXP is evaluated in an environment where %OUTPUT is bound to the main
1265output path, %OUTPUTS is bound to a list of output/path pairs, and where
1266%BUILD-INPUTS is bound to an alist of string/output-path pairs made from
1267INPUTS. Optionally, ENV-VARS is a list of string pairs specifying the
1268name and value of environment variables visible to the builder. The
1269builder terminates by passing the result of EXP to `exit'; thus, when
1270EXP returns #f, the build is considered to have failed.
6dd7787c
LC
1271
1272EXP is built using GUILE-FOR-BUILD (a derivation). When GUILE-FOR-BUILD is
9c629a27
LC
1273omitted or is #f, the value of the `%guile-for-build' fluid is used instead.
1274
63a42824 1275See the `derivation' procedure for the meaning of REFERENCES-GRAPHS,
8856f409
LC
1276ALLOWED-REFERENCES, DISALLOWED-REFERENCES, LOCAL-BUILD?, SUBSTITUTABLE?,
1277and PROPERTIES."
b272c474
LC
1278 (define guile-drv
1279 (or guile-for-build (%guile-for-build)))
1280
d9085c23 1281 (define guile
59688fc4 1282 (string-append (derivation->output-path guile-drv)
d9085c23
LC
1283 "/bin/guile"))
1284
0d56a551
LC
1285 (define module-form?
1286 (match-lambda
a987d2c0
LC
1287 (((or 'define-module 'use-modules) _ ...) #t)
1288 (_ #f)))
0d56a551 1289
7bdd1f0e
LC
1290 (define source-path
1291 ;; When passed an input that is a source, return its path; otherwise
1292 ;; return #f.
1293 (match-lambda
59688fc4
LC
1294 ((_ (? derivation?) _ ...)
1295 #f)
7bdd1f0e
LC
1296 ((_ path _ ...)
1297 (and (not (derivation-path? path))
1298 path))))
1299
d9085c23 1300 (let* ((prologue `(begin
0d56a551
LC
1301 ,@(match exp
1302 ((_ ...)
1303 ;; Module forms must appear at the top-level so
1304 ;; that any macros they export can be expanded.
1305 (filter module-form? exp))
1306 (_ `(,exp)))
1307
d9085c23 1308 (define %output (getenv "out"))
9bc07f4d
LC
1309 (define %outputs
1310 (map (lambda (o)
1311 (cons o (getenv o)))
1312 ',outputs))
d9085c23
LC
1313 (define %build-inputs
1314 ',(map (match-lambda
2acb2cb6
LC
1315 ((name drv . rest)
1316 (let ((sub (match rest
1317 (() "out")
1318 ((x) x))))
1319 (cons name
59688fc4
LC
1320 (cond
1321 ((derivation? drv)
1322 (derivation->output-path drv sub))
1323 ((derivation-path? drv)
1324 (derivation-path->output-path drv
1325 sub))
1326 (else drv))))))
d44bc84b
LC
1327 inputs))
1328
d9024884
LC
1329 ,@(if (null? modules)
1330 '()
1331 ;; Remove our own settings.
1332 '((unsetenv "GUILE_LOAD_COMPILED_PATH")))
1333
d44bc84b
LC
1334 ;; Guile sets it, but remove it to avoid conflicts when
1335 ;; building Guile-using packages.
1336 (unsetenv "LD_LIBRARY_PATH")))
9231ef12 1337 (builder (add-text-to-store store
d9085c23 1338 (string-append name "-guile-builder")
0bb1aa9e
LC
1339
1340 ;; Explicitly use UTF-8 for determinism,
1341 ;; and also because UTF-8 output is faster.
1342 (with-fluids ((%default-port-encoding
1343 "UTF-8"))
9231ef12
LC
1344 (call-with-output-string
1345 (lambda (port)
2dce88d5
LC
1346 (write prologue port)
1347 (write
1348 `(exit
1349 ,(match exp
1350 ((_ ...)
1351 (remove module-form? exp))
1352 (_ `(,exp))))
9231ef12 1353 port))))
7bdd1f0e
LC
1354
1355 ;; The references don't really matter
1356 ;; since the builder is always used in
1357 ;; conjunction with the drv that needs
1358 ;; it. For clarity, we add references
1359 ;; to the subset of INPUTS that are
1360 ;; sources, avoiding references to other
1361 ;; .drv; otherwise, BUILDER's hash would
1362 ;; depend on those, even if they are
1363 ;; fixed-output.
1364 (filter-map source-path inputs)))
1365
cf7648f8
LC
1366 (mod+go-drv (if (pair? modules)
1367 (imported+compiled-modules store modules
1368 #:guile guile-drv
1369 #:system system)
1370 '(#f . #f)))
1371 (mod-drv (car mod+go-drv))
1372 (go-drv (cdr mod+go-drv))
3eb98237 1373 (mod-dir (and mod-drv
59688fc4 1374 (derivation->output-path mod-drv)))
d9024884 1375 (go-dir (and go-drv
59688fc4 1376 (derivation->output-path go-drv))))
a987d2c0 1377 (derivation store name guile
3eb98237
LC
1378 `("--no-auto-compile"
1379 ,@(if mod-dir `("-L" ,mod-dir) '())
1380 ,builder)
d9024884 1381
93c2a007
LC
1382 ;; 'build-expression->derivation' is somewhat deprecated so
1383 ;; don't bother warning here.
1384 #:%deprecation-warning? #f
1385
a987d2c0
LC
1386 #:system system
1387
1388 #:inputs `((,(or guile-for-build (%guile-for-build)))
1389 (,builder)
1390 ,@(map cdr inputs)
1391 ,@(if mod-drv `((,mod-drv) (,go-drv)) '()))
1392
d9024884
LC
1393 ;; When MODULES is non-empty, shamelessly clobber
1394 ;; $GUILE_LOAD_COMPILED_PATH.
a987d2c0
LC
1395 #:env-vars (if go-dir
1396 `(("GUILE_LOAD_COMPILED_PATH" . ,go-dir)
1397 ,@(alist-delete "GUILE_LOAD_COMPILED_PATH"
1398 env-vars))
1399 env-vars)
1400
9bc07f4d 1401 #:hash hash #:hash-algo hash-algo
36bbbbd1 1402 #:recursive? recursive?
9c629a27 1403 #:outputs outputs
1909431c 1404 #:references-graphs references-graphs
63a42824 1405 #:allowed-references allowed-references
35b5ca78 1406 #:disallowed-references disallowed-references
4a6aeb67 1407 #:local-build? local-build?
8856f409
LC
1408 #:substitutable? substitutable?
1409 #:properties properties)))
e87f0591
LC
1410
1411\f
1412;;;
1413;;; Monadic interface.
1414;;;
1415
1416(define built-derivations
1417 (store-lift build-derivations))
713335fa
LC
1418
1419(define raw-derivation
1420 (store-lift derivation))