2018-03-23 10:36:12 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix self)
|
|
|
|
|
#:use-module (guix config)
|
|
|
|
|
#:use-module (guix i18n)
|
|
|
|
|
#:use-module (guix modules)
|
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix monads)
|
|
|
|
|
#:use-module (guix discovery)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix sets)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (guix modules)
|
|
|
|
|
#:use-module (guix build utils)
|
|
|
|
|
#:use-module ((guix build compile) #:select (%lightweight-optimizations))
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-9)
|
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:export (make-config.scm
|
2018-05-30 05:10:27 -04:00
|
|
|
|
whole-package ;for internal use in 'guix pull'
|
2018-03-23 10:36:12 -04:00
|
|
|
|
compiled-guix
|
|
|
|
|
guix-derivation
|
|
|
|
|
reload-guix))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Dependency handling.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define* (false-if-wrong-guile package
|
|
|
|
|
#:optional (guile-version (effective-version)))
|
|
|
|
|
"Return #f if PACKAGE depends on the \"wrong\" major version of Guile (e.g.,
|
|
|
|
|
2.0 instead of 2.2), otherwise return PACKAGE."
|
|
|
|
|
(let ((guile (any (match-lambda
|
|
|
|
|
((label (? package? dep) _ ...)
|
|
|
|
|
(and (string=? (package-name dep) "guile")
|
|
|
|
|
dep)))
|
|
|
|
|
(package-direct-inputs package))))
|
|
|
|
|
(and (or (not guile)
|
|
|
|
|
(string-prefix? guile-version
|
|
|
|
|
(package-version guile)))
|
|
|
|
|
package)))
|
|
|
|
|
|
|
|
|
|
(define (package-for-guile guile-version . names)
|
|
|
|
|
"Return the package with one of the given NAMES that depends on
|
|
|
|
|
GUILE-VERSION (\"2.0\" or \"2.2\"), or #f if none of the packages matches."
|
|
|
|
|
(let loop ((names names))
|
|
|
|
|
(match names
|
|
|
|
|
(()
|
|
|
|
|
#f)
|
|
|
|
|
((name rest ...)
|
|
|
|
|
(match (specification->package name)
|
|
|
|
|
(#f
|
|
|
|
|
(loop rest))
|
|
|
|
|
((? package? package)
|
2018-04-10 18:29:47 -04:00
|
|
|
|
(or (false-if-wrong-guile package guile-version)
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(loop rest))))))))
|
|
|
|
|
|
|
|
|
|
(define specification->package
|
|
|
|
|
;; Use our own variant of that procedure because that of (gnu packages)
|
|
|
|
|
;; would traverse all the .scm files, which is wasteful.
|
|
|
|
|
(let ((ref (lambda (module variable)
|
|
|
|
|
(module-ref (resolve-interface module) variable))))
|
|
|
|
|
(match-lambda
|
|
|
|
|
("guile" (ref '(gnu packages commencement) 'guile-final))
|
|
|
|
|
("guile-json" (ref '(gnu packages guile) 'guile-json))
|
|
|
|
|
("guile-ssh" (ref '(gnu packages ssh) 'guile-ssh))
|
|
|
|
|
("guile-git" (ref '(gnu packages guile) 'guile-git))
|
2018-05-27 09:43:52 -04:00
|
|
|
|
("guile-sqlite3" (ref '(gnu packages guile) 'guile-sqlite3))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
("libgcrypt" (ref '(gnu packages gnupg) 'libgcrypt))
|
|
|
|
|
("zlib" (ref '(gnu packages compression) 'zlib))
|
|
|
|
|
("gzip" (ref '(gnu packages compression) 'gzip))
|
|
|
|
|
("bzip2" (ref '(gnu packages compression) 'bzip2))
|
|
|
|
|
("xz" (ref '(gnu packages compression) 'xz))
|
2018-04-10 08:36:18 -04:00
|
|
|
|
("guile2.0-json" (ref '(gnu packages guile) 'guile2.0-json))
|
|
|
|
|
("guile2.0-ssh" (ref '(gnu packages ssh) 'guile2.0-ssh))
|
|
|
|
|
("guile2.0-git" (ref '(gnu packages guile) 'guile2.0-git))
|
2018-05-27 09:43:52 -04:00
|
|
|
|
;; XXX: No "guile2.0-sqlite3".
|
2018-04-10 08:36:18 -04:00
|
|
|
|
(_ #f)))) ;no such package
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Derivations.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
;; Node in a DAG of build tasks. Each node maps to a derivation, but it's
|
|
|
|
|
;; easier to express things this way.
|
|
|
|
|
(define-record-type <node>
|
|
|
|
|
(node name modules source dependencies compiled)
|
|
|
|
|
node?
|
|
|
|
|
(name node-name) ;string
|
|
|
|
|
(modules node-modules) ;list of module names
|
|
|
|
|
(source node-source) ;list of source files
|
|
|
|
|
(dependencies node-dependencies) ;list of nodes
|
|
|
|
|
(compiled node-compiled)) ;node -> lowerable object
|
|
|
|
|
|
|
|
|
|
(define (node-fold proc init nodes)
|
|
|
|
|
(let loop ((nodes nodes)
|
|
|
|
|
(visited (setq))
|
|
|
|
|
(result init))
|
|
|
|
|
(match nodes
|
|
|
|
|
(() result)
|
|
|
|
|
((head tail ...)
|
|
|
|
|
(if (set-contains? visited head)
|
|
|
|
|
(loop tail visited result)
|
|
|
|
|
(loop tail (set-insert head visited)
|
|
|
|
|
(proc head result)))))))
|
|
|
|
|
|
|
|
|
|
(define (node-modules/recursive nodes)
|
|
|
|
|
(node-fold (lambda (node modules)
|
|
|
|
|
(append (node-modules node) modules))
|
|
|
|
|
'()
|
|
|
|
|
nodes))
|
|
|
|
|
|
|
|
|
|
(define* (closure modules #:optional (except '()))
|
|
|
|
|
(source-module-closure modules
|
|
|
|
|
#:select?
|
|
|
|
|
(match-lambda
|
|
|
|
|
(('guix 'config)
|
|
|
|
|
#f)
|
|
|
|
|
((and module
|
|
|
|
|
(or ('guix _ ...) ('gnu _ ...)))
|
|
|
|
|
(not (member module except)))
|
|
|
|
|
(rest #f))))
|
|
|
|
|
|
|
|
|
|
(define module->import
|
|
|
|
|
;; Return a file-name/file-like object pair for the specified module and
|
|
|
|
|
;; suitable for 'imported-files'.
|
|
|
|
|
(match-lambda
|
|
|
|
|
((module '=> thing)
|
|
|
|
|
(let ((file (module-name->file-name module)))
|
|
|
|
|
(list file thing)))
|
|
|
|
|
(module
|
|
|
|
|
(let ((file (module-name->file-name module)))
|
|
|
|
|
(list file
|
|
|
|
|
(local-file (search-path %load-path file)))))))
|
|
|
|
|
|
|
|
|
|
(define* (scheme-node name modules #:optional (dependencies '())
|
|
|
|
|
#:key (extra-modules '()) (extra-files '())
|
|
|
|
|
(extensions '())
|
|
|
|
|
parallel? guile-for-build)
|
|
|
|
|
"Return a node that builds the given Scheme MODULES, and depends on
|
|
|
|
|
DEPENDENCIES (a list of nodes). EXTRA-MODULES is a list of additional modules
|
|
|
|
|
added to the source, and EXTRA-FILES is a list of additional files.
|
|
|
|
|
EXTENSIONS is a set of full-blown Guile packages (e.g., 'guile-json') that
|
|
|
|
|
must be present in the search path."
|
|
|
|
|
(let* ((modules (append extra-modules
|
|
|
|
|
(closure modules
|
|
|
|
|
(node-modules/recursive dependencies))))
|
|
|
|
|
(module-files (map module->import modules))
|
|
|
|
|
(source (imported-files (string-append name "-source")
|
|
|
|
|
(append module-files extra-files))))
|
|
|
|
|
(node name modules source dependencies
|
2018-06-01 18:02:23 -04:00
|
|
|
|
(compiled-modules name source
|
|
|
|
|
(map car module-files)
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(map node-source dependencies)
|
|
|
|
|
(map node-compiled dependencies)
|
|
|
|
|
#:extensions extensions
|
|
|
|
|
#:parallel? parallel?
|
|
|
|
|
#:guile-for-build guile-for-build))))
|
|
|
|
|
|
|
|
|
|
(define (file-imports directory sub-directory pred)
|
|
|
|
|
"List all the files matching PRED under DIRECTORY/SUB-DIRECTORY. Return a
|
|
|
|
|
list of file-name/file-like objects suitable as inputs to 'imported-files'."
|
|
|
|
|
(map (lambda (file)
|
|
|
|
|
(list (string-drop file (+ 1 (string-length directory)))
|
|
|
|
|
(local-file file #:recursive? #t)))
|
|
|
|
|
(find-files (string-append directory "/" sub-directory) pred)))
|
|
|
|
|
|
|
|
|
|
(define (scheme-modules* directory sub-directory)
|
|
|
|
|
"Return the list of module names found under SUB-DIRECTORY in DIRECTORY."
|
|
|
|
|
(let ((prefix (string-length directory)))
|
|
|
|
|
(map (lambda (file)
|
|
|
|
|
(file-name->module-name (string-drop file prefix)))
|
|
|
|
|
(scheme-files (string-append directory "/" sub-directory)))))
|
|
|
|
|
|
2018-05-30 16:12:09 -04:00
|
|
|
|
(define* (sub-directory item sub-directory)
|
|
|
|
|
"Return SUB-DIRECTORY within ITEM, which may be a file name or a file-like
|
|
|
|
|
object."
|
|
|
|
|
(match item
|
|
|
|
|
((? string?)
|
|
|
|
|
;; This is the optimal case: we return a new "source". Thus, a
|
|
|
|
|
;; derivation that depends on this sub-directory does not depend on ITEM
|
|
|
|
|
;; itself.
|
|
|
|
|
(local-file (string-append item "/" sub-directory)
|
|
|
|
|
#:recursive? #t))
|
|
|
|
|
;; TODO: Add 'local-file?' case.
|
|
|
|
|
(_
|
|
|
|
|
;; In this case, anything that refers to the result also depends on ITEM,
|
|
|
|
|
;; which isn't great.
|
|
|
|
|
(file-append item "/" sub-directory))))
|
|
|
|
|
|
|
|
|
|
(define* (locale-data source domain
|
|
|
|
|
#:optional (directory domain))
|
|
|
|
|
"Return the locale data from 'po/DIRECTORY' in SOURCE, corresponding to
|
|
|
|
|
DOMAIN, a gettext domain."
|
|
|
|
|
(define gettext
|
|
|
|
|
(module-ref (resolve-interface '(gnu packages gettext))
|
|
|
|
|
'gettext-minimal))
|
|
|
|
|
|
|
|
|
|
(define build
|
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils)
|
|
|
|
|
(srfi srfi-26)
|
|
|
|
|
(ice-9 match) (ice-9 ftw))
|
|
|
|
|
|
|
|
|
|
(define po-directory
|
|
|
|
|
#+(sub-directory source (string-append "po/" directory)))
|
|
|
|
|
|
|
|
|
|
(define (compile language)
|
|
|
|
|
(let ((gmo (string-append #$output "/" language "/LC_MESSAGES/"
|
|
|
|
|
#$domain ".mo")))
|
|
|
|
|
(mkdir-p (dirname gmo))
|
|
|
|
|
(invoke #+(file-append gettext "/bin/msgfmt")
|
|
|
|
|
"-c" "--statistics" "--verbose"
|
|
|
|
|
"-o" gmo
|
|
|
|
|
(string-append po-directory "/" language ".po"))))
|
|
|
|
|
|
|
|
|
|
(define (linguas)
|
|
|
|
|
;; Return the list of languages. Note: don't read 'LINGUAS'
|
|
|
|
|
;; because it contains things like 'en@boldquot' that do not have
|
|
|
|
|
;; a corresponding .po file.
|
|
|
|
|
(map (cut basename <> ".po")
|
|
|
|
|
(scandir po-directory
|
|
|
|
|
(cut string-suffix? ".po" <>))))
|
|
|
|
|
|
|
|
|
|
(for-each compile (linguas)))))
|
|
|
|
|
|
|
|
|
|
(computed-file (string-append "guix-locale-" domain)
|
|
|
|
|
build))
|
|
|
|
|
|
2018-05-31 07:42:43 -04:00
|
|
|
|
(define (info-manual source)
|
|
|
|
|
"Return the Info manual built from SOURCE."
|
|
|
|
|
(define texinfo
|
|
|
|
|
(module-ref (resolve-interface '(gnu packages texinfo))
|
|
|
|
|
'texinfo))
|
|
|
|
|
|
|
|
|
|
(define graphviz
|
|
|
|
|
(module-ref (resolve-interface '(gnu packages graphviz))
|
|
|
|
|
'graphviz))
|
|
|
|
|
|
|
|
|
|
(define documentation
|
|
|
|
|
(sub-directory source "doc"))
|
|
|
|
|
|
|
|
|
|
(define examples
|
|
|
|
|
(sub-directory source "gnu/system/examples"))
|
|
|
|
|
|
|
|
|
|
(define build
|
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
|
|
|
|
|
;; Create 'version.texi'.
|
|
|
|
|
;; XXX: Can we use a more meaningful version string yet one that
|
|
|
|
|
;; doesn't change at each commit?
|
|
|
|
|
(call-with-output-file "version.texi"
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(let ((version "0.0-git)"))
|
|
|
|
|
(format port "
|
|
|
|
|
@set UPDATED 1 January 1970
|
|
|
|
|
@set UPDATED-MONTH January 1970
|
|
|
|
|
@set EDITION ~a
|
|
|
|
|
@set VERSION ~a\n" version version))))
|
|
|
|
|
|
|
|
|
|
;; Copy configuration templates that the manual includes.
|
|
|
|
|
(for-each (lambda (template)
|
|
|
|
|
(copy-file template
|
|
|
|
|
(string-append
|
|
|
|
|
"os-config-"
|
|
|
|
|
(basename template ".tmpl")
|
|
|
|
|
".texi")))
|
|
|
|
|
(find-files #$examples "\\.tmpl$"))
|
|
|
|
|
|
|
|
|
|
;; Build graphs.
|
|
|
|
|
(mkdir-p (string-append #$output "/images"))
|
|
|
|
|
(for-each (lambda (dot-file)
|
|
|
|
|
(invoke #+(file-append graphviz "/bin/dot")
|
|
|
|
|
"-Tpng" "-Gratio=.9" "-Gnodesep=.005"
|
|
|
|
|
"-Granksep=.00005" "-Nfontsize=9"
|
|
|
|
|
"-Nheight=.1" "-Nwidth=.1"
|
|
|
|
|
"-o" (string-append #$output "/images/"
|
|
|
|
|
(basename dot-file ".dot")
|
|
|
|
|
".png")
|
|
|
|
|
dot-file))
|
|
|
|
|
(find-files (string-append #$documentation "/images")
|
|
|
|
|
"\\.dot$"))
|
|
|
|
|
|
|
|
|
|
;; Copy other PNGs.
|
|
|
|
|
(for-each (lambda (png-file)
|
|
|
|
|
(install-file png-file
|
|
|
|
|
(string-append #$output "/images")))
|
|
|
|
|
(find-files (string-append #$documentation "/images")
|
|
|
|
|
"\\.png$"))
|
|
|
|
|
|
|
|
|
|
;; Finally build the manual. Copy it the Texinfo files to $PWD and
|
|
|
|
|
;; add a symlink to the 'images' directory so that 'makeinfo' can
|
|
|
|
|
;; see those images and produce image references in the Info output.
|
|
|
|
|
(copy-recursively #$documentation "."
|
|
|
|
|
#:log (%make-void-port "w"))
|
|
|
|
|
(delete-file-recursively "images")
|
|
|
|
|
(symlink (string-append #$output "/images") "images")
|
|
|
|
|
|
|
|
|
|
(for-each (lambda (texi)
|
|
|
|
|
(unless (string=? "guix.texi" texi)
|
|
|
|
|
;; Create 'version-LL.texi'.
|
|
|
|
|
(let* ((base (basename texi ".texi"))
|
|
|
|
|
(dot (string-index base #\.))
|
|
|
|
|
(tag (string-drop base (+ 1 dot))))
|
|
|
|
|
(symlink "version.texi"
|
|
|
|
|
(string-append "version-" tag ".texi"))))
|
|
|
|
|
|
|
|
|
|
(invoke #+(file-append texinfo "/bin/makeinfo")
|
|
|
|
|
texi "-I" #$documentation
|
|
|
|
|
"-I" "."
|
|
|
|
|
"-o" (string-append #$output "/"
|
|
|
|
|
(basename texi ".texi")
|
|
|
|
|
".info")))
|
|
|
|
|
(cons "guix.texi"
|
|
|
|
|
(find-files "." "^guix\\.[a-z]{2}\\.texi$"))))))
|
|
|
|
|
|
|
|
|
|
(computed-file "guix-manual" build))
|
|
|
|
|
|
2018-06-16 19:35:54 -04:00
|
|
|
|
(define* (guix-command modules #:optional compiled-modules
|
|
|
|
|
#:key source (dependencies '())
|
2018-05-30 05:10:27 -04:00
|
|
|
|
(guile-version (effective-version)))
|
|
|
|
|
"Return the 'guix' command such that it adds MODULES and DEPENDENCIES in its
|
|
|
|
|
load path."
|
|
|
|
|
(program-file "guix-command"
|
|
|
|
|
#~(begin
|
|
|
|
|
(set! %load-path
|
|
|
|
|
(append '#$(map (lambda (package)
|
|
|
|
|
(file-append package
|
|
|
|
|
"/share/guile/site/"
|
|
|
|
|
guile-version))
|
|
|
|
|
dependencies)
|
|
|
|
|
%load-path))
|
|
|
|
|
|
|
|
|
|
(set! %load-compiled-path
|
|
|
|
|
(append '#$(map (lambda (package)
|
|
|
|
|
(file-append package "/lib/guile/"
|
|
|
|
|
guile-version
|
|
|
|
|
"/site-ccache"))
|
|
|
|
|
dependencies)
|
|
|
|
|
%load-compiled-path))
|
|
|
|
|
|
|
|
|
|
(set! %load-path (cons #$modules %load-path))
|
|
|
|
|
(set! %load-compiled-path
|
2018-06-16 19:35:54 -04:00
|
|
|
|
(cons (or #$compiled-modules #$modules)
|
|
|
|
|
%load-compiled-path))
|
2018-05-30 05:10:27 -04:00
|
|
|
|
|
|
|
|
|
(let ((guix-main (module-ref (resolve-interface '(guix ui))
|
|
|
|
|
'guix-main)))
|
2018-05-30 16:12:09 -04:00
|
|
|
|
#$(if source
|
|
|
|
|
#~(begin
|
|
|
|
|
(bindtextdomain "guix"
|
|
|
|
|
#$(locale-data source "guix"))
|
|
|
|
|
(bindtextdomain "guix-packages"
|
|
|
|
|
#$(locale-data source
|
|
|
|
|
"guix-packages"
|
|
|
|
|
"packages")))
|
|
|
|
|
#t)
|
2018-05-30 05:10:27 -04:00
|
|
|
|
|
|
|
|
|
;; XXX: It would be more convenient to change it to:
|
|
|
|
|
;; (exit (apply guix-main (command-line)))
|
|
|
|
|
(apply guix-main (command-line))))))
|
|
|
|
|
|
|
|
|
|
(define* (whole-package name modules dependencies
|
2018-05-30 16:12:09 -04:00
|
|
|
|
#:key
|
|
|
|
|
(guile-version (effective-version))
|
2018-06-16 19:35:54 -04:00
|
|
|
|
compiled-modules
|
2018-06-14 15:59:23 -04:00
|
|
|
|
info daemon
|
2018-05-30 16:12:09 -04:00
|
|
|
|
(command (guix-command modules
|
|
|
|
|
#:dependencies dependencies
|
|
|
|
|
#:guile-version guile-version)))
|
2018-05-30 05:10:27 -04:00
|
|
|
|
"Return the whole Guix package NAME that uses MODULES, a derivation of all
|
2018-05-30 16:12:09 -04:00
|
|
|
|
the modules, and DEPENDENCIES, a list of packages depended on. COMMAND is the
|
2018-06-16 19:35:54 -04:00
|
|
|
|
'guix' program to use; INFO is the Info manual. When COMPILED-MODULES is
|
|
|
|
|
true, it is linked as 'lib/guile/X.Y/site-ccache'; otherwise, .go files are
|
|
|
|
|
assumed to be part of MODULES."
|
2018-05-30 16:12:09 -04:00
|
|
|
|
(computed-file name
|
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
(mkdir-p (string-append #$output "/bin"))
|
|
|
|
|
(symlink #$command
|
|
|
|
|
(string-append #$output "/bin/guix"))
|
|
|
|
|
|
2018-06-14 15:59:23 -04:00
|
|
|
|
(when #$daemon
|
|
|
|
|
(symlink (string-append #$daemon "/bin/guix-daemon")
|
|
|
|
|
(string-append #$output "/bin/guix-daemon")))
|
|
|
|
|
|
2018-05-30 16:12:09 -04:00
|
|
|
|
(let ((modules (string-append #$output
|
|
|
|
|
"/share/guile/site/"
|
2018-05-31 07:42:43 -04:00
|
|
|
|
(effective-version)))
|
|
|
|
|
(info #$info))
|
2018-05-30 16:12:09 -04:00
|
|
|
|
(mkdir-p (dirname modules))
|
2018-05-31 07:42:43 -04:00
|
|
|
|
(symlink #$modules modules)
|
|
|
|
|
(when info
|
|
|
|
|
(symlink #$info
|
|
|
|
|
(string-append #$output
|
2018-06-16 19:35:54 -04:00
|
|
|
|
"/share/info"))))
|
|
|
|
|
|
|
|
|
|
;; Object files.
|
|
|
|
|
(when #$compiled-modules
|
|
|
|
|
(let ((modules (string-append #$output "/lib/guile/"
|
|
|
|
|
(effective-version)
|
|
|
|
|
"/site-ccache")))
|
|
|
|
|
(mkdir-p (dirname modules))
|
|
|
|
|
(symlink #$compiled-modules modules)))))))
|
2018-05-30 05:10:27 -04:00
|
|
|
|
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(define* (compiled-guix source #:key (version %guix-version)
|
2018-05-30 05:10:27 -04:00
|
|
|
|
(pull-version 1)
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(name (string-append "guix-" version))
|
|
|
|
|
(guile-version (effective-version))
|
|
|
|
|
(guile-for-build (guile-for-build guile-version))
|
|
|
|
|
(libgcrypt (specification->package "libgcrypt"))
|
|
|
|
|
(zlib (specification->package "zlib"))
|
|
|
|
|
(gzip (specification->package "gzip"))
|
|
|
|
|
(bzip2 (specification->package "bzip2"))
|
|
|
|
|
(xz (specification->package "xz"))
|
|
|
|
|
(guix (specification->package "guix")))
|
|
|
|
|
"Return a file-like object that contains a compiled Guix."
|
|
|
|
|
(define guile-json
|
|
|
|
|
(package-for-guile guile-version
|
|
|
|
|
"guile-json"
|
|
|
|
|
"guile2.0-json"))
|
|
|
|
|
|
|
|
|
|
(define guile-ssh
|
|
|
|
|
(package-for-guile guile-version
|
|
|
|
|
"guile-ssh"
|
|
|
|
|
"guile2.0-ssh"))
|
|
|
|
|
|
|
|
|
|
(define guile-git
|
|
|
|
|
(package-for-guile guile-version
|
|
|
|
|
"guile-git"
|
|
|
|
|
"guile2.0-git"))
|
|
|
|
|
|
2018-05-27 09:43:52 -04:00
|
|
|
|
(define guile-sqlite3
|
|
|
|
|
(package-for-guile guile-version
|
|
|
|
|
"guile-sqlite3"
|
|
|
|
|
"guile2.0-sqlite3"))
|
|
|
|
|
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(define dependencies
|
|
|
|
|
(match (append-map (lambda (package)
|
|
|
|
|
(cons (list "x" package)
|
2018-05-31 10:47:19 -04:00
|
|
|
|
(package-transitive-propagated-inputs package)))
|
2018-06-02 09:40:03 -04:00
|
|
|
|
(list guile-git guile-json guile-ssh guile-sqlite3))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(((labels packages _ ...) ...)
|
|
|
|
|
packages)))
|
|
|
|
|
|
|
|
|
|
(define *core-modules*
|
|
|
|
|
(scheme-node "guix-core"
|
|
|
|
|
'((guix)
|
|
|
|
|
(guix monad-repl)
|
|
|
|
|
(guix packages)
|
|
|
|
|
(guix download)
|
|
|
|
|
(guix discovery)
|
|
|
|
|
(guix profiles)
|
|
|
|
|
(guix build-system gnu)
|
|
|
|
|
(guix build-system trivial)
|
|
|
|
|
(guix build profiles)
|
|
|
|
|
(guix build gnu-build-system))
|
|
|
|
|
|
|
|
|
|
;; Provide a dummy (guix config) with the default version
|
|
|
|
|
;; number, storedir, etc. This is so that "guix-core" is the
|
|
|
|
|
;; same across all installations and doesn't need to be
|
|
|
|
|
;; rebuilt when the version changes, which in turn means we
|
|
|
|
|
;; can have substitutes for it.
|
|
|
|
|
#:extra-modules
|
|
|
|
|
`(((guix config)
|
|
|
|
|
=> ,(make-config.scm #:libgcrypt
|
|
|
|
|
(specification->package
|
|
|
|
|
"libgcrypt"))))
|
|
|
|
|
|
2018-06-02 09:40:03 -04:00
|
|
|
|
;; (guix man-db) is needed at build-time by (guix profiles)
|
|
|
|
|
;; but we don't need to compile it; not compiling it allows
|
|
|
|
|
;; us to avoid an extra dependency on guile-gdbm-ffi.
|
|
|
|
|
#:extra-files
|
2018-06-04 09:40:09 -04:00
|
|
|
|
`(("guix/man-db.scm" ,(local-file "../guix/man-db.scm"))
|
|
|
|
|
("guix/store/schema.sql"
|
|
|
|
|
,(local-file "../guix/store/schema.sql")))
|
2018-06-02 09:40:03 -04:00
|
|
|
|
|
2018-03-23 10:36:12 -04:00
|
|
|
|
#:guile-for-build guile-for-build))
|
|
|
|
|
|
|
|
|
|
(define *extra-modules*
|
|
|
|
|
(scheme-node "guix-extra"
|
|
|
|
|
(filter-map (match-lambda
|
|
|
|
|
(('guix 'scripts _ ..1) #f)
|
2018-06-02 09:40:03 -04:00
|
|
|
|
(('guix 'man-db) #f)
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(name name))
|
|
|
|
|
(scheme-modules* source "guix"))
|
|
|
|
|
(list *core-modules*)
|
|
|
|
|
#:extensions dependencies
|
|
|
|
|
#:guile-for-build guile-for-build))
|
|
|
|
|
|
2018-05-06 10:41:50 -04:00
|
|
|
|
(define *core-package-modules*
|
|
|
|
|
(scheme-node "guix-packages-base"
|
2018-03-23 10:36:12 -04:00
|
|
|
|
`((gnu packages)
|
2018-05-06 10:41:50 -04:00
|
|
|
|
(gnu packages base))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(list *core-modules* *extra-modules*)
|
|
|
|
|
#:extensions dependencies
|
2018-05-06 10:41:50 -04:00
|
|
|
|
|
|
|
|
|
;; Add all the non-Scheme files here. We must do it here so
|
|
|
|
|
;; that 'search-patches' & co. can find them. Ideally we'd
|
|
|
|
|
;; keep them next to the .scm files that use them but it's
|
|
|
|
|
;; difficult to do (XXX).
|
|
|
|
|
#:extra-files
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(file-imports source "gnu/packages"
|
|
|
|
|
(lambda (file stat)
|
|
|
|
|
(and (eq? 'regular (stat:type stat))
|
|
|
|
|
(not (string-suffix? ".scm" file))
|
|
|
|
|
(not (string-suffix? ".go" file))
|
|
|
|
|
(not (string-prefix? ".#" file))
|
|
|
|
|
(not (string-suffix? "~" file)))))
|
|
|
|
|
#:guile-for-build guile-for-build))
|
|
|
|
|
|
2018-05-06 10:41:50 -04:00
|
|
|
|
(define *package-modules*
|
|
|
|
|
(scheme-node "guix-packages"
|
|
|
|
|
(scheme-modules* source "gnu/packages")
|
|
|
|
|
(list *core-modules* *extra-modules* *core-package-modules*)
|
|
|
|
|
#:extensions dependencies
|
|
|
|
|
#:guile-for-build guile-for-build))
|
|
|
|
|
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(define *system-modules*
|
|
|
|
|
(scheme-node "guix-system"
|
|
|
|
|
`((gnu system)
|
|
|
|
|
(gnu services)
|
|
|
|
|
,@(scheme-modules* source "gnu/system")
|
|
|
|
|
,@(scheme-modules* source "gnu/services"))
|
2018-05-06 10:41:50 -04:00
|
|
|
|
(list *core-package-modules* *package-modules*
|
|
|
|
|
*extra-modules* *core-modules*)
|
2018-03-23 10:36:12 -04:00
|
|
|
|
#:extensions dependencies
|
|
|
|
|
#:extra-files
|
2018-06-01 18:04:39 -04:00
|
|
|
|
(append (file-imports source "gnu/system/examples"
|
|
|
|
|
(const #t))
|
|
|
|
|
|
|
|
|
|
;; Build-side code that we don't build. Some of
|
|
|
|
|
;; these depend on guile-rsvg, the Shepherd, etc.
|
|
|
|
|
(file-imports source "gnu/build" (const #t)))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
#:guile-for-build
|
|
|
|
|
guile-for-build))
|
|
|
|
|
|
|
|
|
|
(define *cli-modules*
|
|
|
|
|
(scheme-node "guix-cli"
|
|
|
|
|
(scheme-modules* source "/guix/scripts")
|
2018-05-06 10:41:50 -04:00
|
|
|
|
(list *core-modules* *extra-modules*
|
|
|
|
|
*core-package-modules* *package-modules*
|
2018-03-23 10:36:12 -04:00
|
|
|
|
*system-modules*)
|
|
|
|
|
#:extensions dependencies
|
|
|
|
|
#:guile-for-build guile-for-build))
|
|
|
|
|
|
|
|
|
|
(define *config*
|
|
|
|
|
(scheme-node "guix-config"
|
|
|
|
|
'()
|
|
|
|
|
#:extra-modules
|
|
|
|
|
`(((guix config)
|
|
|
|
|
=> ,(make-config.scm #:libgcrypt libgcrypt
|
|
|
|
|
#:zlib zlib
|
|
|
|
|
#:gzip gzip
|
|
|
|
|
#:bzip2 bzip2
|
|
|
|
|
#:xz xz
|
|
|
|
|
#:package-name
|
|
|
|
|
%guix-package-name
|
|
|
|
|
#:package-version
|
|
|
|
|
version
|
|
|
|
|
#:bug-report-address
|
|
|
|
|
%guix-bug-report-address
|
|
|
|
|
#:home-page-url
|
|
|
|
|
%guix-home-page-url)))
|
|
|
|
|
#:guile-for-build guile-for-build))
|
|
|
|
|
|
2018-06-16 19:35:54 -04:00
|
|
|
|
(define (built-modules node-subset)
|
2018-05-30 05:10:27 -04:00
|
|
|
|
(directory-union (string-append name "-modules")
|
2018-06-16 19:35:54 -04:00
|
|
|
|
(append-map node-subset
|
2018-05-30 05:10:27 -04:00
|
|
|
|
|
|
|
|
|
;; Note: *CONFIG* comes first so that it
|
|
|
|
|
;; overrides the (guix config) module that
|
|
|
|
|
;; comes with *CORE-MODULES*.
|
|
|
|
|
(list *config*
|
|
|
|
|
*cli-modules*
|
|
|
|
|
*system-modules*
|
|
|
|
|
*package-modules*
|
|
|
|
|
*core-package-modules*
|
|
|
|
|
*extra-modules*
|
|
|
|
|
*core-modules*))
|
|
|
|
|
|
|
|
|
|
;; Silently choose the first entry upon collision so that
|
|
|
|
|
;; we choose *CONFIG*.
|
|
|
|
|
#:resolve-collision 'first
|
|
|
|
|
|
|
|
|
|
;; When we do (add-to-store "utils.scm"), "utils.scm" must
|
|
|
|
|
;; be a regular file, not a symlink. Thus, arrange so that
|
|
|
|
|
;; regular files appear as regular files in the final
|
|
|
|
|
;; output.
|
|
|
|
|
#:copy? #t
|
|
|
|
|
#:quiet? #t))
|
|
|
|
|
|
|
|
|
|
;; Version 0 of 'guix pull' meant we'd just return Scheme modules.
|
|
|
|
|
;; Version 1 is when we return the full package.
|
|
|
|
|
(cond ((= 1 pull-version)
|
|
|
|
|
;; The whole package, with a standard file hierarchy.
|
2018-06-16 19:35:54 -04:00
|
|
|
|
(let* ((modules (built-modules (compose list node-source)))
|
|
|
|
|
(compiled (built-modules (compose list node-compiled)))
|
|
|
|
|
(command (guix-command modules compiled
|
|
|
|
|
#:source source
|
|
|
|
|
#:dependencies dependencies
|
|
|
|
|
#:guile-version guile-version)))
|
|
|
|
|
(whole-package name modules dependencies
|
|
|
|
|
#:compiled-modules compiled
|
2018-05-30 16:12:09 -04:00
|
|
|
|
#:command command
|
2018-06-14 15:59:23 -04:00
|
|
|
|
|
|
|
|
|
;; Include 'guix-daemon'. XXX: Here we inject an
|
|
|
|
|
;; older snapshot of guix-daemon, but that's a good
|
|
|
|
|
;; enough approximation for now.
|
|
|
|
|
#:daemon (module-ref (resolve-interface
|
|
|
|
|
'(gnu packages
|
|
|
|
|
package-management))
|
|
|
|
|
'guix-daemon)
|
|
|
|
|
|
2018-05-31 07:42:43 -04:00
|
|
|
|
#:info (info-manual source)
|
2018-05-30 16:12:09 -04:00
|
|
|
|
#:guile-version guile-version)))
|
2018-05-30 05:10:27 -04:00
|
|
|
|
((= 0 pull-version)
|
2018-06-16 19:35:54 -04:00
|
|
|
|
;; Legacy 'guix pull': return the .scm and .go files as one
|
|
|
|
|
;; directory.
|
|
|
|
|
(built-modules (lambda (node)
|
|
|
|
|
(list (node-source node)
|
|
|
|
|
(node-compiled node)))))
|
2018-05-30 05:10:27 -04:00
|
|
|
|
(else
|
|
|
|
|
;; Unsupported 'guix pull' version.
|
|
|
|
|
#f)))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Generating (guix config).
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define %dependency-variables
|
|
|
|
|
;; (guix config) variables corresponding to dependencies.
|
2018-06-08 05:03:31 -04:00
|
|
|
|
'(%libgcrypt %libz %xz %gzip %bzip2 %nix-instantiate))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
(define %persona-variables
|
|
|
|
|
;; (guix config) variables that define Guix's persona.
|
|
|
|
|
'(%guix-package-name
|
|
|
|
|
%guix-version
|
|
|
|
|
%guix-bug-report-address
|
|
|
|
|
%guix-home-page-url))
|
|
|
|
|
|
|
|
|
|
(define %config-variables
|
|
|
|
|
;; (guix config) variables corresponding to Guix configuration (storedir,
|
|
|
|
|
;; localstatedir, etc.)
|
|
|
|
|
(sort (filter pair?
|
|
|
|
|
(module-map (lambda (name var)
|
|
|
|
|
(and (not (memq name %dependency-variables))
|
|
|
|
|
(not (memq name %persona-variables))
|
|
|
|
|
(cons name (variable-ref var))))
|
|
|
|
|
(resolve-interface '(guix config))))
|
|
|
|
|
(lambda (name+value1 name+value2)
|
|
|
|
|
(string<? (symbol->string (car name+value1))
|
|
|
|
|
(symbol->string (car name+value2))))))
|
|
|
|
|
|
2018-06-08 05:03:31 -04:00
|
|
|
|
(define* (make-config.scm #:key libgcrypt zlib gzip xz bzip2
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(package-name "GNU Guix")
|
|
|
|
|
(package-version "0")
|
|
|
|
|
(bug-report-address "bug-guix@gnu.org")
|
|
|
|
|
(home-page-url "https://gnu.org/s/guix"))
|
|
|
|
|
|
|
|
|
|
;; Hack so that Geiser is not confused.
|
|
|
|
|
(define defmod 'define-module)
|
|
|
|
|
|
|
|
|
|
(scheme-file "config.scm"
|
2018-04-10 18:55:13 -04:00
|
|
|
|
#~(;; The following expressions get spliced.
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(#$defmod (guix config)
|
|
|
|
|
#:export (%guix-package-name
|
|
|
|
|
%guix-version
|
|
|
|
|
%guix-bug-report-address
|
|
|
|
|
%guix-home-page-url
|
|
|
|
|
%libgcrypt
|
|
|
|
|
%libz
|
|
|
|
|
%gzip
|
|
|
|
|
%bzip2
|
|
|
|
|
%xz
|
|
|
|
|
%nix-instantiate))
|
|
|
|
|
|
2018-04-10 18:22:03 -04:00
|
|
|
|
#$@(map (match-lambda
|
|
|
|
|
((name . value)
|
|
|
|
|
#~(define-public #$name #$value)))
|
|
|
|
|
%config-variables)
|
|
|
|
|
|
|
|
|
|
(define %guix-package-name #$package-name)
|
|
|
|
|
(define %guix-version #$package-version)
|
|
|
|
|
(define %guix-bug-report-address #$bug-report-address)
|
|
|
|
|
(define %guix-home-page-url #$home-page-url)
|
|
|
|
|
|
|
|
|
|
(define %gzip
|
|
|
|
|
#+(and gzip (file-append gzip "/bin/gzip")))
|
|
|
|
|
(define %bzip2
|
|
|
|
|
#+(and bzip2 (file-append bzip2 "/bin/bzip2")))
|
|
|
|
|
(define %xz
|
|
|
|
|
#+(and xz (file-append xz "/bin/xz")))
|
|
|
|
|
|
|
|
|
|
(define %libgcrypt
|
|
|
|
|
#+(and libgcrypt
|
|
|
|
|
(file-append libgcrypt "/lib/libgcrypt")))
|
|
|
|
|
(define %libz
|
|
|
|
|
#+(and zlib
|
|
|
|
|
(file-append zlib "/lib/libz")))
|
|
|
|
|
|
|
|
|
|
(define %nix-instantiate ;for (guix import snix)
|
2018-04-10 18:55:13 -04:00
|
|
|
|
"nix-instantiate"))
|
|
|
|
|
|
|
|
|
|
;; Guile 2.0 *requires* the 'define-module' to be at the
|
|
|
|
|
;; top-level or it 'toplevel-ref' in the resulting .go file are
|
|
|
|
|
;; made relative to a nonexistent anonymous module.
|
|
|
|
|
#:splice? #t))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Building.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (imported-files name files)
|
|
|
|
|
;; This is a non-monadic, simplified version of 'imported-files' from (guix
|
|
|
|
|
;; gexp).
|
2018-06-01 18:04:39 -04:00
|
|
|
|
(define same-target?
|
|
|
|
|
(match-lambda*
|
|
|
|
|
(((file1 . _) (file2 . _))
|
|
|
|
|
(string=? file1 file2))))
|
|
|
|
|
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(define build
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
'((guix build utils)))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (ice-9 match)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
|
|
|
|
|
(mkdir (ungexp output)) (chdir (ungexp output))
|
|
|
|
|
(for-each (match-lambda
|
|
|
|
|
((final-path store-path)
|
|
|
|
|
(mkdir-p (dirname final-path))
|
|
|
|
|
|
|
|
|
|
;; Note: We need regular files to be regular files, not
|
|
|
|
|
;; symlinks, as this makes a difference for
|
|
|
|
|
;; 'add-to-store'.
|
|
|
|
|
(copy-file store-path final-path)))
|
2018-06-01 18:04:39 -04:00
|
|
|
|
'#$(delete-duplicates files same-target?)))))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
2018-04-10 08:33:25 -04:00
|
|
|
|
;; We're just copying files around, no need to substitute or offload it.
|
|
|
|
|
(computed-file name build
|
|
|
|
|
#:options '(#:local-build? #t
|
2018-06-01 17:03:31 -04:00
|
|
|
|
#:substitutable? #f
|
|
|
|
|
#:env-vars (("COLUMNS" . "200")))))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
2018-06-01 18:02:23 -04:00
|
|
|
|
(define* (compiled-modules name module-tree module-files
|
2018-03-23 10:36:12 -04:00
|
|
|
|
#:optional
|
|
|
|
|
(dependencies '())
|
|
|
|
|
(dependencies-compiled '())
|
|
|
|
|
#:key
|
|
|
|
|
(extensions '()) ;full-blown Guile packages
|
|
|
|
|
parallel?
|
|
|
|
|
guile-for-build)
|
2018-06-01 18:02:23 -04:00
|
|
|
|
"Build all the MODULE-FILES from MODULE-TREE. MODULE-FILES must be a list
|
|
|
|
|
like '(\"guix/foo.scm\" \"gnu/bar.scm\") and MODULE-TREE is the directory
|
|
|
|
|
containing MODULE-FILES and possibly other files as well."
|
2018-03-23 10:36:12 -04:00
|
|
|
|
;; This is a non-monadic, enhanced version of 'compiled-file' from (guix
|
|
|
|
|
;; gexp).
|
|
|
|
|
(define build
|
|
|
|
|
(with-imported-modules (source-module-closure
|
|
|
|
|
'((guix build compile)
|
|
|
|
|
(guix build utils)))
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (srfi srfi-26)
|
|
|
|
|
(ice-9 match)
|
|
|
|
|
(ice-9 format)
|
|
|
|
|
(ice-9 threads)
|
|
|
|
|
(guix build compile)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
|
|
|
|
|
(define (regular? file)
|
|
|
|
|
(not (member file '("." ".."))))
|
|
|
|
|
|
|
|
|
|
(define (report-load file total completed)
|
|
|
|
|
(display #\cr)
|
|
|
|
|
(format #t
|
|
|
|
|
"loading...\t~5,1f% of ~d files" ;FIXME: i18n
|
|
|
|
|
(* 100. (/ completed total)) total)
|
|
|
|
|
(force-output))
|
|
|
|
|
|
|
|
|
|
(define (report-compilation file total completed)
|
|
|
|
|
(display #\cr)
|
|
|
|
|
(format #t "compiling...\t~5,1f% of ~d files" ;FIXME: i18n
|
|
|
|
|
(* 100. (/ completed total)) total)
|
|
|
|
|
(force-output))
|
|
|
|
|
|
2018-06-01 18:02:23 -04:00
|
|
|
|
(define (process-directory directory files output)
|
|
|
|
|
;; Hide compilation warnings.
|
|
|
|
|
(parameterize ((current-warning-port (%make-void-port "w")))
|
|
|
|
|
(compile-files directory #$output files
|
|
|
|
|
#:workers (parallel-job-count)
|
|
|
|
|
#:report-load report-load
|
|
|
|
|
#:report-compilation report-compilation)))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
(setvbuf (current-output-port) _IONBF)
|
|
|
|
|
(setvbuf (current-error-port) _IONBF)
|
|
|
|
|
|
|
|
|
|
(set! %load-path (cons #+module-tree %load-path))
|
|
|
|
|
(set! %load-path
|
|
|
|
|
(append '#+dependencies
|
|
|
|
|
(map (lambda (extension)
|
|
|
|
|
(string-append extension "/share/guile/site/"
|
|
|
|
|
(effective-version)))
|
|
|
|
|
'#+extensions)
|
|
|
|
|
%load-path))
|
|
|
|
|
|
|
|
|
|
(set! %load-compiled-path
|
|
|
|
|
(append '#+dependencies-compiled
|
|
|
|
|
(map (lambda (extension)
|
|
|
|
|
(string-append extension "/lib/guile/"
|
|
|
|
|
(effective-version)
|
|
|
|
|
"/site-ccache"))
|
|
|
|
|
'#+extensions)
|
|
|
|
|
%load-compiled-path))
|
|
|
|
|
|
|
|
|
|
;; Load the compiler modules upfront.
|
|
|
|
|
(compile #f)
|
|
|
|
|
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
(chdir #+module-tree)
|
2018-06-01 18:02:23 -04:00
|
|
|
|
(process-directory "." '#+module-files #$output)
|
2018-04-10 08:34:59 -04:00
|
|
|
|
(newline))))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
(computed-file name build
|
|
|
|
|
#:guile guile-for-build
|
|
|
|
|
#:options
|
|
|
|
|
`(#:local-build? #f ;allow substitutes
|
|
|
|
|
|
|
|
|
|
;; Don't annoy people about _IONBF deprecation.
|
2018-06-01 12:36:28 -04:00
|
|
|
|
;; Initialize 'terminal-width' in (system repl debug)
|
|
|
|
|
;; to a large-enough value to make backtrace more
|
|
|
|
|
;; verbose.
|
|
|
|
|
#:env-vars (("GUILE_WARN_DEPRECATED" . "no")
|
|
|
|
|
("COLUMNS" . "200")))))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Building.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (guile-for-build version)
|
|
|
|
|
"Return a derivation for Guile 2.0 or 2.2, whichever matches the currently
|
|
|
|
|
running Guile."
|
|
|
|
|
(define canonical-package ;soft reference
|
|
|
|
|
(module-ref (resolve-interface '(gnu packages base))
|
|
|
|
|
'canonical-package))
|
|
|
|
|
|
|
|
|
|
(match version
|
|
|
|
|
("2.2.2"
|
|
|
|
|
;; Gross hack to avoid ABI incompatibilities (see
|
|
|
|
|
;; <https://bugs.gnu.org/29570>.)
|
|
|
|
|
(module-ref (resolve-interface '(gnu packages guile))
|
|
|
|
|
'guile-2.2.2))
|
|
|
|
|
("2.2"
|
|
|
|
|
(canonical-package (module-ref (resolve-interface '(gnu packages guile))
|
|
|
|
|
'guile-2.2/fixed)))
|
|
|
|
|
("2.0"
|
2018-04-10 08:36:18 -04:00
|
|
|
|
(module-ref (resolve-interface '(gnu packages guile))
|
|
|
|
|
'guile-2.0))))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
|
|
|
|
|
(define* (guix-derivation source version
|
2018-05-30 05:10:27 -04:00
|
|
|
|
#:optional (guile-version (effective-version))
|
|
|
|
|
#:key (pull-version 0))
|
2018-03-23 10:36:12 -04:00
|
|
|
|
"Return, as a monadic value, the derivation to build the Guix from SOURCE
|
2018-05-30 05:10:27 -04:00
|
|
|
|
for GUILE-VERSION. Use VERSION as the version string. PULL-VERSION specifies
|
|
|
|
|
the version of the 'guix pull' protocol. Return #f if this PULL-VERSION value
|
|
|
|
|
is not supported."
|
2018-03-23 10:36:12 -04:00
|
|
|
|
(define (shorten version)
|
|
|
|
|
(if (and (string-every char-set:hex-digit version)
|
|
|
|
|
(> (string-length version) 9))
|
|
|
|
|
(string-take version 9) ;Git commit
|
|
|
|
|
version))
|
|
|
|
|
|
|
|
|
|
(define guile
|
|
|
|
|
(guile-for-build guile-version))
|
|
|
|
|
|
|
|
|
|
(mbegin %store-monad
|
|
|
|
|
(set-guile-for-build guile)
|
2018-05-30 05:10:27 -04:00
|
|
|
|
(let ((guix (compiled-guix source
|
|
|
|
|
#:version version
|
|
|
|
|
#:name (string-append "guix-"
|
|
|
|
|
(shorten version))
|
|
|
|
|
#:pull-version pull-version
|
|
|
|
|
#:guile-version (match guile-version
|
|
|
|
|
("2.2.2" "2.2")
|
|
|
|
|
(version version))
|
|
|
|
|
#:guile-for-build guile)))
|
|
|
|
|
(if guix
|
|
|
|
|
(lower-object guix)
|
|
|
|
|
(return #f)))))
|