gnu: Add ghc-case-insensitive.
[guix.git] / build-aux / check-final-inputs-self-contained.scm
blobba85c876d2b10cdc36ed20da860c69708b7099b4
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3 ;;;
4 ;;; This file is part of GNU Guix.
5 ;;;
6 ;;; GNU Guix is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or (at
9 ;;; your option) any later version.
10 ;;;
11 ;;; GNU Guix is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
19 ;;;
20 ;;; Check whether important binaries are available at hydra.gnu.org.
21 ;;;
23 (use-modules (guix store)
24              (guix packages)
25              (guix derivations)
26              (guix ui)
27              (gnu packages commencement)
28              (ice-9 match)
29              (srfi srfi-1)
30              (srfi srfi-26))
32 (define (final-inputs store system)
33   "Return the list of outputs directories of the final inputs for SYSTEM."
34   (append-map (match-lambda
35                ((name package)
36                 (let ((drv (package-derivation store package system)))
37                   ;; Libc's 'debug' output refers to gcc-cross-boot0, but it's
38                   ;; hard to avoid, so we tolerate it.  This should be the
39                   ;; only exception.
40                   (filter-map (match-lambda
41                                (("debug" . directory)
42                                 (if (string=? "glibc" (package-name package))
43                                     #f
44                                     directory))
45                                ((_ . directory) directory))
46                               (derivation->output-paths drv)))))
47               %final-inputs))
49 (define (assert-valid-substitute substitute)
50   "Make sure SUBSTITUTE does not refer to any bootstrap inputs, and bail out
51 if it does."
52   (let ((references (substitutable-references substitute)))
53     (when (any (cut string-contains <> "boot") references)
54       (leave (_ "'~a' refers to bootstrap inputs: ~s~%")
55              (substitutable-path substitute) references))))
57 (define (test-final-inputs store system)
58   "Check whether the final inputs for SYSTEM are clean---i.e., they don't
59 refer to the bootstrap tools."
60   (format #t "checking final inputs for '~a'...~%" system)
61   (let* ((inputs    (final-inputs store system))
62          (available (substitutable-path-info store inputs)))
63     (for-each (lambda (dir)
64                 (unless (find (lambda (substitute)
65                                 (string=? (substitutable-path substitute)
66                                           dir))
67                               available)
68                   (leave (_ "~a (system: ~a) has no substitute~%")
69                          dir system)))
70               inputs)
72     (for-each assert-valid-substitute available)))
74 ;; Entry point.
75 (with-store store
76   (parameterize ((%graft? #f))
77     (set-build-options store #:use-substitutes? #t)
79     (for-each (cut test-final-inputs store <>)
80               %supported-systems)))