Update cuirass config
modules/config/cuirass.scm
41 | 41 | ||
42 | 42 | (define %cuirass-specifications | |
43 | 43 | #~(list | |
44 | - | '((#:name "guix-modular-master") | |
44 | + | '((#:name . "guix-modular-master") | |
45 | 45 | (#:load-path-inputs . ()) | |
46 | 46 | (#:package-path-inputs . ()) | |
47 | 47 | (#:proc-input . "guix-modular") | |
48 | 48 | (#:proc-file . "build-aux/cuirass/guix-modular.scm") | |
49 | 49 | (#:proc . cuirass-jobs) | |
50 | 50 | (#:proc-args (systems . ("x86_64-linux"))) | |
51 | - | (#:inputs . (#$(guix-input "guix-modular" "master")))) | |
52 | - | '((#:name "master") | |
51 | + | (#:inputs . (#$(guix-input "guix-modular" "master"))) | |
52 | + | (#:build-outputs . ())) | |
53 | + | '((#:name . "master") | |
53 | 54 | (#:load-path-inputs . ()) | |
54 | 55 | (#:package-path-inputs . ()) | |
55 | 56 | (#:proc-input . "guix") | |
56 | 57 | (#:proc-file . "build-aux/cuirass/gnu-system.scm") | |
57 | 58 | (#:proc . cuirass-jobs) | |
58 | 59 | (#:proc-args (subset . "all") (systems . ("x86_64-linux"))) | |
59 | - | (#:inputs . (#$(guix-input "guix" "master")))))) | |
60 | + | (#:inputs . (#$(guix-input "guix" "master"))) | |
61 | + | (#:build-outputs . ())))) | |
60 | 62 | ||
61 | 63 | (define (publish-locations url) | |
62 | 64 | "Return the nginx location blocks for 'guix publish' running on URL." |
systems/amadeus.scm
61 | 61 | (guix-service-type config => | |
62 | 62 | (guix-configuration | |
63 | 63 | (inherit config) | |
64 | - | (substitute-urls '()))))))) | |
64 | + | (substitute-urls '()) | |
65 | + | (extra-options '("-M2" "--no-substitutes")))))))) |