2013-01-05 18:47:50 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-03-30 17:56:38 -04:00
|
|
|
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2012-09-10 16:47:10 -04:00
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-09-10 16:47:10 -04:00
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-09-10 16:47:10 -04: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-05 18:47:50 -05:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-09-10 16:47:10 -04: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-05 18:47:50 -05:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-09-10 16:47:10 -04:00
|
|
|
|
|
|
|
(define-module (guix build-system trivial)
|
|
|
|
#:use-module (guix store)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix derivations)
|
2012-10-05 19:24:46 -04:00
|
|
|
#:use-module (guix packages)
|
2012-09-10 16:47:10 -04:00
|
|
|
#:use-module (guix build-system)
|
2012-10-05 19:24:46 -04:00
|
|
|
#:use-module (ice-9 match)
|
2012-09-10 16:47:10 -04:00
|
|
|
#:export (trivial-build-system))
|
|
|
|
|
2013-05-24 17:53:06 -04:00
|
|
|
(define (guile-for-build store guile system)
|
|
|
|
(match guile
|
|
|
|
((? package?)
|
|
|
|
(package-derivation store guile system))
|
|
|
|
((and (? string?) (? derivation-path?))
|
|
|
|
guile)
|
|
|
|
(#f ; the default
|
|
|
|
(let* ((distro (resolve-interface '(gnu packages base)))
|
|
|
|
(guile (module-ref distro 'guile-final)))
|
|
|
|
(package-derivation store guile system)))))
|
|
|
|
|
2012-09-10 16:47:10 -04:00
|
|
|
(define* (trivial-build store name source inputs
|
2013-03-30 17:56:38 -04:00
|
|
|
#:key
|
|
|
|
outputs guile system builder (modules '())
|
|
|
|
search-paths)
|
2012-09-10 16:47:10 -04:00
|
|
|
"Run build expression BUILDER, an expression, for SYSTEM. SOURCE is
|
|
|
|
ignored."
|
derivations: Use more keyword parameters for 'build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation): Turn 'system' and
'inputs' into keyword parameters.
Adjust callers accordingly.
* gnu/system/linux.scm, gnu/system/vm.scm, guix/build-system/cmake.scm,
guix/build-system/gnu.scm, guix/build-system/perl.scm,
guix/build-system/python.scm, guix/build-system/trivial.scm,
guix/download.scm, guix/packages.scm, guix/profiles.scm,
guix/scripts/pull.scm, tests/derivations.scm, tests/guix-build.sh,
tests/monads.scm, tests/store.scm, tests/union.scm: Adjust users of
'build-expression->derivation' and 'derivation-expression'
accordingly.
* doc/guix.texi (Derivations): Adjust 'build-expression->derivation'
documentation accordingly.
(The Store Monad): Likewise for 'derivation-expression'.
2013-12-04 10:07:36 -05:00
|
|
|
(build-expression->derivation store name builder
|
|
|
|
#:inputs (if source
|
|
|
|
`(("source" ,source) ,@inputs)
|
|
|
|
inputs)
|
|
|
|
#:system system
|
2012-09-10 16:47:10 -04:00
|
|
|
#:outputs outputs
|
2012-10-05 19:24:46 -04:00
|
|
|
#:modules modules
|
2013-05-24 17:53:06 -04:00
|
|
|
#:guile-for-build
|
|
|
|
(guile-for-build store guile system)))
|
|
|
|
|
|
|
|
(define* (trivial-cross-build store name target source inputs native-inputs
|
|
|
|
#:key
|
|
|
|
outputs guile system builder (modules '())
|
|
|
|
search-paths native-search-paths)
|
|
|
|
"Like `trivial-build', but in a cross-compilation context."
|
derivations: Use more keyword parameters for 'build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation): Turn 'system' and
'inputs' into keyword parameters.
Adjust callers accordingly.
* gnu/system/linux.scm, gnu/system/vm.scm, guix/build-system/cmake.scm,
guix/build-system/gnu.scm, guix/build-system/perl.scm,
guix/build-system/python.scm, guix/build-system/trivial.scm,
guix/download.scm, guix/packages.scm, guix/profiles.scm,
guix/scripts/pull.scm, tests/derivations.scm, tests/guix-build.sh,
tests/monads.scm, tests/store.scm, tests/union.scm: Adjust users of
'build-expression->derivation' and 'derivation-expression'
accordingly.
* doc/guix.texi (Derivations): Adjust 'build-expression->derivation'
documentation accordingly.
(The Store Monad): Likewise for 'derivation-expression'.
2013-12-04 10:07:36 -05:00
|
|
|
(build-expression->derivation store name builder
|
|
|
|
#:system system
|
|
|
|
#:inputs
|
2013-09-26 15:50:05 -04:00
|
|
|
(let ((inputs (append native-inputs inputs)))
|
|
|
|
(if source
|
|
|
|
`(("source" ,source) ,@inputs)
|
|
|
|
inputs))
|
2013-05-24 17:53:06 -04:00
|
|
|
#:outputs outputs
|
|
|
|
#:modules modules
|
|
|
|
#:guile-for-build
|
|
|
|
(guile-for-build store guile system)))
|
2012-09-10 16:47:10 -04:00
|
|
|
|
|
|
|
(define trivial-build-system
|
|
|
|
(build-system (name 'trivial)
|
|
|
|
(description
|
|
|
|
"Trivial build system, to run arbitrary Scheme build expressions")
|
|
|
|
(build trivial-build)
|
2013-05-24 17:53:06 -04:00
|
|
|
(cross-build trivial-cross-build)))
|