2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
packages: Mark the `arguments' field of <package> as thunked.
* guix/packages.scm (<package>): Mark `arguments' as thunked.
(package-derivation): Adjust accordingly. Parameterize
%CURRENT-SYSTEM to SYSTEM, so that arguments can refer to it.
* guix/build-system/gnu.scm (package-with-explicit-inputs): Expect
`package-arguments' to always return a list, and return a list.
(package-with-extra-configure-variable): Likewise.
(static-package): Likewise.
* gnu/packages/base.scm (patch, findutils, gcc-4.7, binutils-boot0,
gcc-boot0, glibc-final-with-bootstrap-bash, cross-gcc-wrapper,
static-bash-for-glibc, binutils-final, gcc-final): Change `arguments'
from a lambda to a list, and use (%current-system) as needed.
(nix-system->gnu-triplet, boot-triplet): Have the first argument
default to (%current-system).
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Have `system'
default to (%current-system).
(%bootstrap-gcc): Change `arguments' to a list.
* gnu/packages/gawk.scm (gawk): Likewise.
* gnu/packages/m4.scm (m4): Likewise.
* gnu/packages/make-bootstrap.scm (%glibc-for-bootstrap): Likewise, and
expect `package-arguments' to return a list.
(%static-inputs, %gcc-static, tarball-package): Likewise.
* gnu/packages/ncurses.scm (ncurses): Likewise.
2013-01-23 23:21:59 +01:00
|
|
|
|
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2012-06-13 17:03:34 +02:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-06-13 17:03:34 +02:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-06-13 17:03:34 +02:00
|
|
|
|
;;; 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.
|
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-06-13 17:03:34 +02:00
|
|
|
|
;;; 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
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-06-13 17:03:34 +02:00
|
|
|
|
|
2012-06-27 23:58:07 +02:00
|
|
|
|
(define-module (guix build-system gnu)
|
2012-06-13 17:03:34 +02:00
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (guix derivations)
|
2012-06-27 23:58:07 +02:00
|
|
|
|
#:use-module (guix build-system)
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
#:use-module (guix packages)
|
2012-06-13 17:03:34 +02:00
|
|
|
|
#:use-module (srfi srfi-1)
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
#:use-module (srfi srfi-39)
|
|
|
|
|
#:use-module (ice-9 match)
|
2012-06-27 23:58:07 +02:00
|
|
|
|
#:export (gnu-build
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
gnu-build-system
|
2013-03-04 00:41:46 +01:00
|
|
|
|
standard-inputs
|
2012-11-05 23:50:05 +01:00
|
|
|
|
package-with-explicit-inputs
|
|
|
|
|
package-with-extra-configure-variable
|
2013-01-01 16:55:34 +01:00
|
|
|
|
static-libgcc-package
|
|
|
|
|
static-package))
|
2012-06-13 17:03:34 +02:00
|
|
|
|
|
|
|
|
|
;; Commentary:
|
|
|
|
|
;;
|
|
|
|
|
;; Standard build procedure for packages using the GNU Build System or
|
|
|
|
|
;; something compatible ("./configure && make && make install").
|
|
|
|
|
;;
|
|
|
|
|
;; Code:
|
|
|
|
|
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
(define* (package-with-explicit-inputs p boot-inputs
|
|
|
|
|
#:optional
|
2012-10-06 01:24:46 +02:00
|
|
|
|
(loc (current-source-location))
|
|
|
|
|
#:key guile)
|
|
|
|
|
"Rewrite P, which is assumed to use GNU-BUILD-SYSTEM, to take
|
|
|
|
|
BOOT-INPUTS as explicit inputs instead of the implicit default, and
|
|
|
|
|
return it. Use GUILE to run the builder, or the distro's final Guile
|
|
|
|
|
when GUILE is #f."
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
(define rewritten-input
|
|
|
|
|
(match-lambda
|
|
|
|
|
((name (? package? p) sub-drv ...)
|
2012-10-06 01:24:46 +02:00
|
|
|
|
(cons* name
|
|
|
|
|
(package-with-explicit-inputs p boot-inputs #:guile guile)
|
|
|
|
|
sub-drv))
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
(x x)))
|
|
|
|
|
|
|
|
|
|
(define boot-input-names
|
|
|
|
|
(map car boot-inputs))
|
|
|
|
|
|
|
|
|
|
(define (filtered-inputs inputs)
|
|
|
|
|
(fold alist-delete inputs boot-input-names))
|
|
|
|
|
|
|
|
|
|
(package (inherit p)
|
2012-09-05 23:59:23 +02:00
|
|
|
|
(location (if (pair? loc) (source-properties->location loc) loc))
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
(arguments
|
|
|
|
|
(let ((args (package-arguments p)))
|
packages: Mark the `arguments' field of <package> as thunked.
* guix/packages.scm (<package>): Mark `arguments' as thunked.
(package-derivation): Adjust accordingly. Parameterize
%CURRENT-SYSTEM to SYSTEM, so that arguments can refer to it.
* guix/build-system/gnu.scm (package-with-explicit-inputs): Expect
`package-arguments' to always return a list, and return a list.
(package-with-extra-configure-variable): Likewise.
(static-package): Likewise.
* gnu/packages/base.scm (patch, findutils, gcc-4.7, binutils-boot0,
gcc-boot0, glibc-final-with-bootstrap-bash, cross-gcc-wrapper,
static-bash-for-glibc, binutils-final, gcc-final): Change `arguments'
from a lambda to a list, and use (%current-system) as needed.
(nix-system->gnu-triplet, boot-triplet): Have the first argument
default to (%current-system).
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Have `system'
default to (%current-system).
(%bootstrap-gcc): Change `arguments' to a list.
* gnu/packages/gawk.scm (gawk): Likewise.
* gnu/packages/m4.scm (m4): Likewise.
* gnu/packages/make-bootstrap.scm (%glibc-for-bootstrap): Likewise, and
expect `package-arguments' to return a list.
(%static-inputs, %gcc-static, tarball-package): Likewise.
* gnu/packages/ncurses.scm (ncurses): Likewise.
2013-01-23 23:21:59 +01:00
|
|
|
|
`(#:guile ,guile
|
|
|
|
|
#:implicit-inputs? #f ,@args)))
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
(native-inputs (map rewritten-input
|
|
|
|
|
(filtered-inputs (package-native-inputs p))))
|
|
|
|
|
(propagated-inputs (map rewritten-input
|
|
|
|
|
(filtered-inputs
|
|
|
|
|
(package-propagated-inputs p))))
|
|
|
|
|
(inputs `(,@boot-inputs
|
|
|
|
|
,@(map rewritten-input
|
|
|
|
|
(filtered-inputs (package-inputs p)))))))
|
|
|
|
|
|
2012-11-05 23:50:05 +01:00
|
|
|
|
(define (package-with-extra-configure-variable p variable value)
|
2013-02-08 18:03:36 +01:00
|
|
|
|
"Return a version of P with VARIABLE=VALUE specified as an extra `configure'
|
|
|
|
|
flag, recursively. An example is LDFLAGS=-static. If P already has configure
|
|
|
|
|
flags for VARIABLE, the associated value is augmented."
|
2012-11-05 23:50:05 +01:00
|
|
|
|
(let loop ((p p))
|
|
|
|
|
(define (rewritten-inputs inputs)
|
|
|
|
|
(map (match-lambda
|
|
|
|
|
((name (? package? p) sub ...)
|
|
|
|
|
`(,name ,(loop p) ,@sub))
|
|
|
|
|
(input input))
|
|
|
|
|
inputs))
|
|
|
|
|
|
|
|
|
|
(package (inherit p)
|
|
|
|
|
(arguments
|
packages: Mark the `arguments' field of <package> as thunked.
* guix/packages.scm (<package>): Mark `arguments' as thunked.
(package-derivation): Adjust accordingly. Parameterize
%CURRENT-SYSTEM to SYSTEM, so that arguments can refer to it.
* guix/build-system/gnu.scm (package-with-explicit-inputs): Expect
`package-arguments' to always return a list, and return a list.
(package-with-extra-configure-variable): Likewise.
(static-package): Likewise.
* gnu/packages/base.scm (patch, findutils, gcc-4.7, binutils-boot0,
gcc-boot0, glibc-final-with-bootstrap-bash, cross-gcc-wrapper,
static-bash-for-glibc, binutils-final, gcc-final): Change `arguments'
from a lambda to a list, and use (%current-system) as needed.
(nix-system->gnu-triplet, boot-triplet): Have the first argument
default to (%current-system).
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Have `system'
default to (%current-system).
(%bootstrap-gcc): Change `arguments' to a list.
* gnu/packages/gawk.scm (gawk): Likewise.
* gnu/packages/m4.scm (m4): Likewise.
* gnu/packages/make-bootstrap.scm (%glibc-for-bootstrap): Likewise, and
expect `package-arguments' to return a list.
(%static-inputs, %gcc-static, tarball-package): Likewise.
* gnu/packages/ncurses.scm (ncurses): Likewise.
2013-01-23 23:21:59 +01:00
|
|
|
|
(let ((args (package-arguments p)))
|
|
|
|
|
(substitute-keyword-arguments args
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
(let* ((var= (string-append variable "="))
|
|
|
|
|
(len (string-length var=)))
|
|
|
|
|
`(cons ,(string-append var= value)
|
|
|
|
|
(map (lambda (flag)
|
|
|
|
|
(if (string-prefix? ,var= flag)
|
|
|
|
|
(string-append
|
|
|
|
|
,(string-append var= value " ")
|
|
|
|
|
(substring flag ,len))
|
|
|
|
|
flag))
|
|
|
|
|
,flags)))))))
|
2012-11-05 23:50:05 +01:00
|
|
|
|
(inputs (rewritten-inputs (package-inputs p)))
|
|
|
|
|
(propagated-inputs (rewritten-inputs (package-propagated-inputs p))))))
|
|
|
|
|
|
|
|
|
|
(define (static-libgcc-package p)
|
|
|
|
|
"A version of P linked with `-static-gcc'."
|
|
|
|
|
(package-with-extra-configure-variable p "LDFLAGS" "-static-libgcc"))
|
|
|
|
|
|
2013-02-14 00:14:29 +01:00
|
|
|
|
(define* (static-package p #:optional (loc (current-source-location))
|
|
|
|
|
#:key (strip-all? #t))
|
|
|
|
|
"Return a statically-linked version of package P. If STRIP-ALL? is true,
|
|
|
|
|
use `--strip-all' as the arguments to `strip'."
|
2013-01-01 16:55:34 +01:00
|
|
|
|
(let ((args (package-arguments p)))
|
|
|
|
|
(package (inherit p)
|
|
|
|
|
(location (source-properties->location loc))
|
|
|
|
|
(arguments
|
packages: Mark the `arguments' field of <package> as thunked.
* guix/packages.scm (<package>): Mark `arguments' as thunked.
(package-derivation): Adjust accordingly. Parameterize
%CURRENT-SYSTEM to SYSTEM, so that arguments can refer to it.
* guix/build-system/gnu.scm (package-with-explicit-inputs): Expect
`package-arguments' to always return a list, and return a list.
(package-with-extra-configure-variable): Likewise.
(static-package): Likewise.
* gnu/packages/base.scm (patch, findutils, gcc-4.7, binutils-boot0,
gcc-boot0, glibc-final-with-bootstrap-bash, cross-gcc-wrapper,
static-bash-for-glibc, binutils-final, gcc-final): Change `arguments'
from a lambda to a list, and use (%current-system) as needed.
(nix-system->gnu-triplet, boot-triplet): Have the first argument
default to (%current-system).
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Have `system'
default to (%current-system).
(%bootstrap-gcc): Change `arguments' to a list.
* gnu/packages/gawk.scm (gawk): Likewise.
* gnu/packages/m4.scm (m4): Likewise.
* gnu/packages/make-bootstrap.scm (%glibc-for-bootstrap): Likewise, and
expect `package-arguments' to return a list.
(%static-inputs, %gcc-static, tarball-package): Likewise.
* gnu/packages/ncurses.scm (ncurses): Likewise.
2013-01-23 23:21:59 +01:00
|
|
|
|
(let ((a (default-keyword-arguments args
|
|
|
|
|
'(#:configure-flags '()
|
2013-02-14 00:14:29 +01:00
|
|
|
|
#:strip-flags '("--strip-debug")))))
|
packages: Mark the `arguments' field of <package> as thunked.
* guix/packages.scm (<package>): Mark `arguments' as thunked.
(package-derivation): Adjust accordingly. Parameterize
%CURRENT-SYSTEM to SYSTEM, so that arguments can refer to it.
* guix/build-system/gnu.scm (package-with-explicit-inputs): Expect
`package-arguments' to always return a list, and return a list.
(package-with-extra-configure-variable): Likewise.
(static-package): Likewise.
* gnu/packages/base.scm (patch, findutils, gcc-4.7, binutils-boot0,
gcc-boot0, glibc-final-with-bootstrap-bash, cross-gcc-wrapper,
static-bash-for-glibc, binutils-final, gcc-final): Change `arguments'
from a lambda to a list, and use (%current-system) as needed.
(nix-system->gnu-triplet, boot-triplet): Have the first argument
default to (%current-system).
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Have `system'
default to (%current-system).
(%bootstrap-gcc): Change `arguments' to a list.
* gnu/packages/gawk.scm (gawk): Likewise.
* gnu/packages/m4.scm (m4): Likewise.
* gnu/packages/make-bootstrap.scm (%glibc-for-bootstrap): Likewise, and
expect `package-arguments' to return a list.
(%static-inputs, %gcc-static, tarball-package): Likewise.
* gnu/packages/ncurses.scm (ncurses): Likewise.
2013-01-23 23:21:59 +01:00
|
|
|
|
(substitute-keyword-arguments a
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
`(cons* "--disable-shared" "LDFLAGS=-static" ,flags))
|
2013-02-14 00:14:29 +01:00
|
|
|
|
((#:strip-flags flags)
|
|
|
|
|
(if strip-all?
|
|
|
|
|
''("--strip-all")
|
|
|
|
|
flags))))))))
|
2013-01-01 16:55:34 +01:00
|
|
|
|
|
2012-11-05 23:50:05 +01:00
|
|
|
|
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
(define %store
|
|
|
|
|
;; Store passed to STANDARD-INPUTS.
|
|
|
|
|
(make-parameter #f))
|
|
|
|
|
|
|
|
|
|
(define standard-inputs
|
|
|
|
|
(memoize
|
|
|
|
|
(lambda (system)
|
|
|
|
|
"Return the list of implicit standard inputs used with the GNU Build
|
|
|
|
|
System: GCC, GNU Make, Bash, Coreutils, etc."
|
|
|
|
|
(map (match-lambda
|
|
|
|
|
((name pkg sub-drv ...)
|
|
|
|
|
(cons* name (package-derivation (%store) pkg system) sub-drv))
|
|
|
|
|
((name (? derivation-path? path) sub-drv ...)
|
|
|
|
|
(cons* name path sub-drv))
|
|
|
|
|
(z
|
|
|
|
|
(error "invalid standard input" z)))
|
|
|
|
|
|
2013-01-18 01:06:24 +01:00
|
|
|
|
;; Resolve (gnu packages base) lazily to hide circular dependency.
|
|
|
|
|
(let* ((distro (resolve-module '(gnu packages base)))
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
(inputs (module-ref distro '%final-inputs)))
|
|
|
|
|
(append inputs
|
|
|
|
|
(append-map (match-lambda
|
|
|
|
|
((name package _ ...)
|
|
|
|
|
(package-transitive-propagated-inputs package)))
|
|
|
|
|
inputs)))))))
|
2012-06-13 17:03:34 +02:00
|
|
|
|
|
|
|
|
|
(define* (gnu-build store name source inputs
|
2012-10-06 01:24:46 +02:00
|
|
|
|
#:key (guile #f)
|
|
|
|
|
(outputs '("out")) (configure-flags ''())
|
2012-07-01 17:32:03 +02:00
|
|
|
|
(make-flags ''())
|
|
|
|
|
(patches ''()) (patch-flags ''("--batch" "-p1"))
|
2012-08-23 23:13:41 +02:00
|
|
|
|
(out-of-source? #f)
|
2012-09-01 01:14:31 +02:00
|
|
|
|
(path-exclusions ''())
|
2012-07-07 18:12:20 +02:00
|
|
|
|
(tests? #t)
|
2012-12-29 21:03:23 +01:00
|
|
|
|
(test-target "check")
|
2012-07-07 16:49:23 +02:00
|
|
|
|
(parallel-build? #t) (parallel-tests? #t)
|
2012-08-19 17:54:54 +02:00
|
|
|
|
(patch-shebangs? #t)
|
2012-08-31 17:04:53 +02:00
|
|
|
|
(strip-binaries? #t)
|
|
|
|
|
(strip-flags ''("--strip-debug"))
|
|
|
|
|
(strip-directories ''("lib" "lib64" "libexec"
|
|
|
|
|
"bin" "sbin"))
|
2012-07-01 17:32:03 +02:00
|
|
|
|
(phases '%standard-phases)
|
2012-07-01 17:32:03 +02:00
|
|
|
|
(system (%current-system))
|
2012-10-06 01:24:46 +02:00
|
|
|
|
(implicit-inputs? #t) ; useful when bootstrapping
|
2012-10-31 17:53:59 +01:00
|
|
|
|
(imported-modules '((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)))
|
2012-07-01 17:32:03 +02:00
|
|
|
|
(modules '((guix build gnu-build-system)
|
|
|
|
|
(guix build utils))))
|
2012-06-13 17:03:34 +02:00
|
|
|
|
"Return a derivation called NAME that builds from tarball SOURCE, with
|
2012-10-06 01:24:46 +02:00
|
|
|
|
input derivation INPUTS, using the usual procedure of the GNU Build
|
|
|
|
|
System. The builder is run with GUILE, or with the distro's final Guile
|
2012-10-31 17:53:59 +01:00
|
|
|
|
package if GUILE is #f or omitted.
|
|
|
|
|
|
|
|
|
|
The builder is run in a context where MODULES are used; IMPORTED-MODULES
|
|
|
|
|
specifies modules not provided by Guile itself that must be imported in
|
|
|
|
|
the builder's environment, from the host. Note that we distinguish
|
|
|
|
|
between both, because for Guile's own modules like (ice-9 foo), we want
|
|
|
|
|
to use GUILE's own version of it, rather than import the user's one,
|
|
|
|
|
which could lead to gratuitous input divergence."
|
2012-06-13 17:03:34 +02:00
|
|
|
|
(define builder
|
|
|
|
|
`(begin
|
2012-07-01 17:32:03 +02:00
|
|
|
|
(use-modules ,@modules)
|
2013-01-15 01:05:39 +01:00
|
|
|
|
(gnu-build #:source ,(if (and source (derivation-path? source))
|
2012-06-16 16:56:47 +02:00
|
|
|
|
(derivation-path->output-path source)
|
|
|
|
|
source)
|
2012-10-17 22:40:05 +02:00
|
|
|
|
#:system ,system
|
2012-06-16 16:56:47 +02:00
|
|
|
|
#:outputs %outputs
|
|
|
|
|
#:inputs %build-inputs
|
2012-07-01 17:32:03 +02:00
|
|
|
|
#:patches ,patches
|
|
|
|
|
#:patch-flags ,patch-flags
|
2012-06-16 16:56:47 +02:00
|
|
|
|
#:phases ,phases
|
2012-06-28 01:18:15 +02:00
|
|
|
|
#:configure-flags ,configure-flags
|
2012-07-07 16:49:23 +02:00
|
|
|
|
#:make-flags ,make-flags
|
2012-08-23 23:13:41 +02:00
|
|
|
|
#:out-of-source? ,out-of-source?
|
2012-09-01 01:14:31 +02:00
|
|
|
|
#:path-exclusions ,path-exclusions
|
2012-07-07 18:12:20 +02:00
|
|
|
|
#:tests? ,tests?
|
2012-12-29 21:03:23 +01:00
|
|
|
|
#:test-target ,test-target
|
2012-07-07 16:49:23 +02:00
|
|
|
|
#:parallel-build? ,parallel-build?
|
2012-08-19 17:54:54 +02:00
|
|
|
|
#:parallel-tests? ,parallel-tests?
|
2012-08-31 17:04:53 +02:00
|
|
|
|
#:patch-shebangs? ,patch-shebangs?
|
|
|
|
|
#:strip-binaries? ,strip-binaries?
|
|
|
|
|
#:strip-flags ,strip-flags
|
|
|
|
|
#:strip-directories ,strip-directories)))
|
2012-06-13 17:03:34 +02:00
|
|
|
|
|
2012-10-06 01:24:46 +02:00
|
|
|
|
(define guile-for-build
|
|
|
|
|
(match guile
|
2012-10-06 01:24:46 +02:00
|
|
|
|
((? package?)
|
|
|
|
|
(package-derivation store guile system))
|
|
|
|
|
((and (? string?) (? derivation-path?))
|
|
|
|
|
guile)
|
2012-10-06 01:24:46 +02:00
|
|
|
|
(#f ; the default
|
2013-01-18 01:06:24 +01:00
|
|
|
|
(let* ((distro (resolve-interface '(gnu packages base)))
|
2012-10-06 01:24:46 +02:00
|
|
|
|
(guile (module-ref distro 'guile-final)))
|
2012-10-06 01:24:46 +02:00
|
|
|
|
(package-derivation store guile system)))))
|
2012-10-06 01:24:46 +02:00
|
|
|
|
|
2012-06-13 17:03:34 +02:00
|
|
|
|
(build-expression->derivation store name system
|
|
|
|
|
builder
|
2013-01-15 01:05:39 +01:00
|
|
|
|
`(,@(if source
|
|
|
|
|
`(("source" ,source))
|
|
|
|
|
'())
|
2012-06-13 17:21:27 +02:00
|
|
|
|
,@inputs
|
distro: Bootstrap standard inputs from Nixpkgs.
This is a first step towards bootstrapping from a set of pre-built,
statically-linked binaries.
* guix/build-system/gnu.scm (package-with-explicit-inputs,
standard-inputs): New procedure.
(%store): New variable.
(%standard-inputs): Remove.
(gnu-build): New `implicit-inputs?' keyword parameter. Use it to
choose whether to use `(standard-inputs SYSTEM)' or the empty list.
* distro/base.scm (guile-2.0): Remove dependency on XZ, which is now
implicit.
(%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0,
%boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2,
mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs,
%final-inputs): New variables.
2012-09-01 19:21:06 +02:00
|
|
|
|
,@(if implicit-inputs?
|
|
|
|
|
(parameterize ((%store store))
|
|
|
|
|
(standard-inputs system))
|
|
|
|
|
'()))
|
2012-06-13 17:03:34 +02:00
|
|
|
|
#:outputs outputs
|
2012-10-31 17:53:59 +01:00
|
|
|
|
#:modules imported-modules
|
2012-10-06 01:24:46 +02:00
|
|
|
|
#:guile-for-build guile-for-build))
|
2012-06-27 23:58:07 +02:00
|
|
|
|
|
|
|
|
|
(define gnu-build-system
|
|
|
|
|
(build-system (name 'gnu)
|
|
|
|
|
(description
|
|
|
|
|
"The GNU Build System—i.e., ./configure && make && make install")
|
|
|
|
|
(build gnu-build))) ; TODO: add `gnu-cross-build'
|