2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-01-17 09:45:05 -05:00
|
|
|
|
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2012-06-27 19:24:34 -04:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-06-27 19:24:34 -04:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-06-27 19:24:34 -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-06-27 19:24:34 -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-06-27 19:24:34 -04:00
|
|
|
|
|
|
|
|
|
(define-module (guix packages)
|
|
|
|
|
#:use-module (guix utils)
|
2013-05-12 09:46:16 -04:00
|
|
|
|
#:use-module (guix records)
|
2012-06-27 19:24:34 -04:00
|
|
|
|
#:use-module (guix store)
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 16:33:28 -05:00
|
|
|
|
#:use-module (guix base32)
|
2013-02-15 19:37:26 -05:00
|
|
|
|
#:use-module (guix derivations)
|
2012-06-27 19:24:34 -04:00
|
|
|
|
#:use-module (guix build-system)
|
|
|
|
|
#:use-module (ice-9 match)
|
2012-07-01 11:32:03 -04:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2012-09-01 13:21:06 -04:00
|
|
|
|
#:use-module (srfi srfi-9 gnu)
|
2013-02-15 19:37:26 -05:00
|
|
|
|
#:use-module (srfi srfi-11)
|
2013-05-20 17:00:47 -04:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2012-08-23 17:09:13 -04:00
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
2013-05-25 10:14:37 -04:00
|
|
|
|
#:re-export (%current-system
|
|
|
|
|
%current-target-system)
|
2012-09-01 13:21:06 -04:00
|
|
|
|
#:export (origin
|
2012-07-01 11:32:03 -04:00
|
|
|
|
origin?
|
|
|
|
|
origin-uri
|
|
|
|
|
origin-method
|
|
|
|
|
origin-sha256
|
|
|
|
|
origin-file-name
|
2012-07-01 11:32:03 -04:00
|
|
|
|
base32
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2013-03-30 17:56:38 -04:00
|
|
|
|
<search-path-specification>
|
|
|
|
|
search-path-specification
|
|
|
|
|
search-path-specification?
|
|
|
|
|
search-path-specification->sexp
|
|
|
|
|
|
2012-06-27 19:24:34 -04:00
|
|
|
|
package
|
|
|
|
|
package?
|
|
|
|
|
package-name
|
|
|
|
|
package-version
|
2012-09-05 13:01:47 -04:00
|
|
|
|
package-full-name
|
2012-06-27 19:24:34 -04:00
|
|
|
|
package-source
|
|
|
|
|
package-build-system
|
|
|
|
|
package-arguments
|
|
|
|
|
package-inputs
|
|
|
|
|
package-native-inputs
|
2012-07-01 11:32:03 -04:00
|
|
|
|
package-propagated-inputs
|
2012-06-27 19:24:34 -04:00
|
|
|
|
package-outputs
|
2013-03-30 17:56:38 -04:00
|
|
|
|
package-native-search-paths
|
2012-06-27 19:24:34 -04:00
|
|
|
|
package-search-paths
|
2012-11-04 07:41:34 -05:00
|
|
|
|
package-synopsis
|
2012-06-27 19:24:34 -04:00
|
|
|
|
package-description
|
|
|
|
|
package-license
|
2012-11-25 10:55:35 -05:00
|
|
|
|
package-home-page
|
2012-06-27 19:24:34 -04:00
|
|
|
|
package-platforms
|
|
|
|
|
package-maintainers
|
2012-07-01 11:32:03 -04:00
|
|
|
|
package-properties
|
2012-06-28 17:15:24 -04:00
|
|
|
|
package-location
|
2013-04-22 17:07:13 -04:00
|
|
|
|
package-field-location
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2012-07-07 14:14:20 -04:00
|
|
|
|
package-transitive-inputs
|
2013-05-24 16:21:24 -04:00
|
|
|
|
package-transitive-target-inputs
|
|
|
|
|
package-transitive-native-inputs
|
2012-09-01 13:21:06 -04:00
|
|
|
|
package-transitive-propagated-inputs
|
2012-06-27 19:24:34 -04:00
|
|
|
|
package-source-derivation
|
|
|
|
|
package-derivation
|
2012-08-23 17:09:13 -04:00
|
|
|
|
package-cross-derivation
|
2013-02-15 19:37:26 -05:00
|
|
|
|
package-output
|
2012-08-23 17:09:13 -04:00
|
|
|
|
|
|
|
|
|
&package-error
|
2012-10-27 08:56:38 -04:00
|
|
|
|
package-error?
|
2012-08-23 17:09:13 -04:00
|
|
|
|
package-error-package
|
|
|
|
|
&package-input-error
|
2012-10-27 08:56:38 -04:00
|
|
|
|
package-input-error?
|
2013-05-27 17:41:35 -04:00
|
|
|
|
package-error-invalid-input
|
|
|
|
|
&package-cross-build-system-error
|
|
|
|
|
package-cross-build-system-error?))
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This module provides a high-level mechanism to define packages in a
|
|
|
|
|
;;; Guix-based distribution.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2012-07-01 11:32:03 -04:00
|
|
|
|
;; The source of a package, such as a tarball URL and fetcher---called
|
|
|
|
|
;; "origin" to avoid name clash with `package-source', `source', etc.
|
|
|
|
|
(define-record-type* <origin>
|
|
|
|
|
origin make-origin
|
|
|
|
|
origin?
|
|
|
|
|
(uri origin-uri) ; string
|
|
|
|
|
(method origin-method) ; symbol
|
|
|
|
|
(sha256 origin-sha256) ; bytevector
|
|
|
|
|
(file-name origin-file-name (default #f))) ; optional file name
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2012-07-01 11:32:03 -04:00
|
|
|
|
(define-syntax base32
|
|
|
|
|
(lambda (s)
|
|
|
|
|
"Return the bytevector corresponding to the given Nix-base32
|
|
|
|
|
representation."
|
|
|
|
|
(syntax-case s ()
|
|
|
|
|
((_ str)
|
|
|
|
|
(string? (syntax->datum #'str))
|
2013-01-17 09:45:05 -05:00
|
|
|
|
;; A literal string: do the conversion at expansion time.
|
2012-07-01 11:32:03 -04:00
|
|
|
|
(with-syntax ((bv (nix-base32-string->bytevector
|
|
|
|
|
(syntax->datum #'str))))
|
2013-01-17 09:45:05 -05:00
|
|
|
|
#''bv))
|
|
|
|
|
((_ str)
|
|
|
|
|
#'(nix-base32-string->bytevector str)))))
|
2012-07-01 11:32:03 -04:00
|
|
|
|
|
2013-03-30 17:56:38 -04:00
|
|
|
|
;; The specification of a search path.
|
|
|
|
|
(define-record-type* <search-path-specification>
|
|
|
|
|
search-path-specification make-search-path-specification
|
|
|
|
|
search-path-specification?
|
|
|
|
|
(variable search-path-specification-variable)
|
|
|
|
|
(directories search-path-specification-directories)
|
|
|
|
|
(separator search-path-specification-separator (default ":")))
|
|
|
|
|
|
|
|
|
|
(define (search-path-specification->sexp spec)
|
|
|
|
|
"Return an sexp representing SPEC, a <search-path-specification>. The sexp
|
|
|
|
|
corresponds to the arguments expected by `set-path-environment-variable'."
|
|
|
|
|
(match spec
|
|
|
|
|
(($ <search-path-specification> variable directories separator)
|
|
|
|
|
`(,variable ,directories ,separator))))
|
2012-08-23 17:09:13 -04:00
|
|
|
|
|
2013-03-30 17:56:38 -04:00
|
|
|
|
;; A package.
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(define-record-type* <package>
|
|
|
|
|
package make-package
|
|
|
|
|
package?
|
|
|
|
|
(name package-name) ; string
|
|
|
|
|
(version package-version) ; string
|
2012-07-01 11:32:03 -04:00
|
|
|
|
(source package-source) ; <origin> instance
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(build-system package-build-system) ; build system
|
2012-06-28 18:28:57 -04:00
|
|
|
|
(arguments package-arguments ; arguments for the build method
|
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 17:21:59 -05:00
|
|
|
|
(default '()) (thunked))
|
2012-07-01 11:32:03 -04:00
|
|
|
|
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(inputs package-inputs ; input packages or derivations
|
2013-01-24 17:33:30 -05:00
|
|
|
|
(default '()) (thunked))
|
2012-07-01 11:32:03 -04:00
|
|
|
|
(propagated-inputs package-propagated-inputs ; same, but propagated
|
|
|
|
|
(default '()))
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(native-inputs package-native-inputs ; native input packages/derivations
|
2013-05-25 10:14:57 -04:00
|
|
|
|
(default '()) (thunked))
|
2012-07-01 11:32:03 -04:00
|
|
|
|
(self-native-input? package-self-native-input? ; whether to use itself as
|
|
|
|
|
; a native input when cross-
|
|
|
|
|
(default #f)) ; compiling
|
2012-07-01 11:32:03 -04:00
|
|
|
|
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(outputs package-outputs ; list of strings
|
|
|
|
|
(default '("out")))
|
2013-03-30 17:56:38 -04:00
|
|
|
|
|
|
|
|
|
; lists of
|
|
|
|
|
; <search-path-specification>,
|
|
|
|
|
; for native and cross
|
|
|
|
|
; inputs
|
|
|
|
|
(native-search-paths package-native-search-paths (default '()))
|
|
|
|
|
(search-paths package-search-paths (default '()))
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2012-11-04 07:41:34 -05:00
|
|
|
|
(synopsis package-synopsis) ; one-line description
|
|
|
|
|
(description package-description) ; one or two paragraphs
|
2013-03-06 18:42:18 -05:00
|
|
|
|
(license package-license)
|
2012-06-28 17:44:43 -04:00
|
|
|
|
(home-page package-home-page)
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(platforms package-platforms (default '()))
|
2012-06-28 17:15:24 -04:00
|
|
|
|
(maintainers package-maintainers (default '()))
|
2012-06-28 17:44:43 -04:00
|
|
|
|
|
2012-07-01 11:32:03 -04:00
|
|
|
|
(properties package-properties (default '())) ; alist for anything else
|
|
|
|
|
|
2012-06-28 17:15:24 -04:00
|
|
|
|
(location package-location
|
|
|
|
|
(default (and=> (current-source-location)
|
|
|
|
|
source-properties->location))))
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2012-09-01 13:21:06 -04:00
|
|
|
|
(set-record-type-printer! <package>
|
|
|
|
|
(lambda (package port)
|
|
|
|
|
(let ((loc (package-location package))
|
|
|
|
|
(format simple-format))
|
|
|
|
|
(format port "#<package ~a-~a ~a:~a ~a>"
|
|
|
|
|
(package-name package)
|
|
|
|
|
(package-version package)
|
|
|
|
|
(location-file loc)
|
|
|
|
|
(location-line loc)
|
|
|
|
|
(number->string (object-address
|
|
|
|
|
package)
|
|
|
|
|
16)))))
|
|
|
|
|
|
2013-04-22 17:07:13 -04:00
|
|
|
|
(define (package-field-location package field)
|
2013-04-24 08:43:31 -04:00
|
|
|
|
"Return the source code location of the definition of FIELD for PACKAGE, or
|
|
|
|
|
#f if it could not be determined."
|
|
|
|
|
(define (goto port line column)
|
|
|
|
|
(unless (and (= (port-column port) (- column 1))
|
|
|
|
|
(= (port-line port) (- line 1)))
|
|
|
|
|
(unless (eof-object? (read-char port))
|
|
|
|
|
(goto port line column))))
|
2013-04-22 17:07:13 -04:00
|
|
|
|
|
|
|
|
|
(match (package-location package)
|
|
|
|
|
(($ <location> file line column)
|
|
|
|
|
(catch 'system
|
|
|
|
|
(lambda ()
|
|
|
|
|
(call-with-input-file (search-path %load-path file)
|
|
|
|
|
(lambda (port)
|
2013-04-24 08:43:31 -04:00
|
|
|
|
(goto port line column)
|
|
|
|
|
(match (read port)
|
|
|
|
|
(('package inits ...)
|
|
|
|
|
(let ((field (assoc field inits)))
|
|
|
|
|
(match field
|
|
|
|
|
((_ value)
|
2013-04-27 17:02:06 -04:00
|
|
|
|
;; Put the `or' here, and not in the first argument of
|
|
|
|
|
;; `and=>', to work around a compiler bug in 2.0.5.
|
|
|
|
|
(or (and=> (source-properties value)
|
|
|
|
|
source-properties->location)
|
|
|
|
|
(and=> (source-properties field)
|
|
|
|
|
source-properties->location)))
|
2013-04-24 08:43:31 -04:00
|
|
|
|
(_
|
|
|
|
|
#f))))
|
|
|
|
|
(_
|
|
|
|
|
#f)))))
|
2013-04-22 17:07:13 -04:00
|
|
|
|
(lambda _
|
2013-04-24 08:43:31 -04:00
|
|
|
|
#f)))
|
2013-04-22 17:07:13 -04:00
|
|
|
|
(_ #f)))
|
|
|
|
|
|
2012-08-23 17:09:13 -04:00
|
|
|
|
|
|
|
|
|
;; Error conditions.
|
|
|
|
|
|
|
|
|
|
(define-condition-type &package-error &error
|
|
|
|
|
package-error?
|
|
|
|
|
(package package-error-package))
|
|
|
|
|
|
|
|
|
|
(define-condition-type &package-input-error &package-error
|
|
|
|
|
package-input-error?
|
|
|
|
|
(input package-error-invalid-input))
|
|
|
|
|
|
2013-05-27 17:41:35 -04:00
|
|
|
|
(define-condition-type &package-cross-build-system-error &package-error
|
|
|
|
|
package-cross-build-system-error?)
|
|
|
|
|
|
2012-08-23 17:09:13 -04:00
|
|
|
|
|
2012-09-05 13:01:47 -04:00
|
|
|
|
(define (package-full-name package)
|
|
|
|
|
"Return the full name of PACKAGE--i.e., `NAME-VERSION'."
|
|
|
|
|
(string-append (package-name package) "-" (package-version package)))
|
|
|
|
|
|
2012-10-25 17:41:15 -04:00
|
|
|
|
(define* (package-source-derivation store source
|
|
|
|
|
#:optional (system (%current-system)))
|
|
|
|
|
"Return the derivation path for SOURCE, a package source, for SYSTEM."
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(match source
|
2012-07-01 11:32:03 -04:00
|
|
|
|
(($ <origin> uri method sha256 name)
|
2012-10-25 17:41:15 -04:00
|
|
|
|
(method store uri 'sha256 sha256 name
|
|
|
|
|
#:system system))))
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2012-09-01 13:21:06 -04:00
|
|
|
|
(define (transitive-inputs inputs)
|
|
|
|
|
(let loop ((inputs inputs)
|
2012-07-07 14:14:20 -04:00
|
|
|
|
(result '()))
|
|
|
|
|
(match inputs
|
|
|
|
|
(()
|
|
|
|
|
(delete-duplicates (reverse result))) ; XXX: efficiency
|
|
|
|
|
(((and i (name (? package? p) sub ...)) rest ...)
|
|
|
|
|
(let ((t (map (match-lambda
|
|
|
|
|
((dep-name derivation ...)
|
|
|
|
|
(cons (string-append name "/" dep-name)
|
|
|
|
|
derivation)))
|
|
|
|
|
(package-propagated-inputs p))))
|
|
|
|
|
(loop (append t rest)
|
|
|
|
|
(append t (cons i result)))))
|
|
|
|
|
((input rest ...)
|
|
|
|
|
(loop rest (cons input result))))))
|
|
|
|
|
|
2012-09-01 13:21:06 -04:00
|
|
|
|
(define (package-transitive-inputs package)
|
|
|
|
|
"Return the transitive inputs of PACKAGE---i.e., its direct inputs along
|
|
|
|
|
with their propagated inputs, recursively."
|
|
|
|
|
(transitive-inputs (append (package-native-inputs package)
|
|
|
|
|
(package-inputs package)
|
|
|
|
|
(package-propagated-inputs package))))
|
|
|
|
|
|
2013-05-24 16:21:24 -04:00
|
|
|
|
(define (package-transitive-target-inputs package)
|
|
|
|
|
"Return the transitive target inputs of PACKAGE---i.e., its direct inputs
|
|
|
|
|
along with their propagated inputs, recursively. This only includes inputs
|
|
|
|
|
for the target system, and not native inputs."
|
|
|
|
|
(transitive-inputs (append (package-inputs package)
|
|
|
|
|
(package-propagated-inputs package))))
|
|
|
|
|
|
|
|
|
|
(define (package-transitive-native-inputs package)
|
|
|
|
|
"Return the transitive native inputs of PACKAGE---i.e., its direct inputs
|
|
|
|
|
along with their propagated inputs, recursively. This only includes inputs
|
|
|
|
|
for the host system (\"native inputs\"), and not target inputs."
|
|
|
|
|
(transitive-inputs (package-native-inputs package)))
|
|
|
|
|
|
2012-09-01 13:21:06 -04:00
|
|
|
|
(define (package-transitive-propagated-inputs package)
|
|
|
|
|
"Return the propagated inputs of PACKAGE, and their propagated inputs,
|
|
|
|
|
recursively."
|
|
|
|
|
(transitive-inputs (package-propagated-inputs package)))
|
|
|
|
|
|
2012-09-01 13:21:06 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Package derivations.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define %derivation-cache
|
|
|
|
|
;; Package to derivation-path mapping.
|
2012-10-08 16:07:19 -04:00
|
|
|
|
(make-weak-key-hash-table 100))
|
2012-09-01 13:21:06 -04:00
|
|
|
|
|
2013-01-20 16:17:58 -05:00
|
|
|
|
(define (cache package system thunk)
|
|
|
|
|
"Memoize the return values of THUNK as the derivation of PACKAGE on
|
|
|
|
|
SYSTEM."
|
|
|
|
|
(let ((vals (call-with-values thunk list)))
|
|
|
|
|
;; Use `hashq-set!' instead of `hash-set!' because `hash' returns the
|
|
|
|
|
;; same value for all structs (as of Guile 2.0.6), and because pointer
|
|
|
|
|
;; equality is sufficient in practice.
|
|
|
|
|
(hashq-set! %derivation-cache package `((,system ,@vals)))
|
|
|
|
|
(apply values vals)))
|
|
|
|
|
|
|
|
|
|
(define-syntax-rule (cached package system body ...)
|
|
|
|
|
"Memoize the result of BODY for the arguments PACKAGE and SYSTEM.
|
|
|
|
|
Return the cached result when available."
|
|
|
|
|
(let ((thunk (lambda () body ...)))
|
|
|
|
|
(match (hashq-ref %derivation-cache package)
|
|
|
|
|
((alist (... ...))
|
|
|
|
|
(match (assoc-ref alist system)
|
|
|
|
|
((vals (... ...))
|
|
|
|
|
(apply values vals))
|
|
|
|
|
(#f
|
|
|
|
|
(cache package system thunk))))
|
|
|
|
|
(#f
|
|
|
|
|
(cache package system thunk)))))
|
2012-09-01 13:21:06 -04:00
|
|
|
|
|
2013-05-20 17:00:47 -04:00
|
|
|
|
(define* (expand-input store package input system #:optional cross-system)
|
|
|
|
|
"Expand INPUT, an input tuple, such that it contains only references to
|
|
|
|
|
derivation paths or store paths. PACKAGE is only used to provide contextual
|
|
|
|
|
information in exceptions."
|
2012-10-21 10:57:50 -04:00
|
|
|
|
(define (intern file)
|
|
|
|
|
;; Add FILE to the store. Set the `recursive?' bit to #t, so that
|
|
|
|
|
;; file permissions are preserved.
|
2013-01-30 10:30:49 -05:00
|
|
|
|
(add-to-store store (basename file) #t "sha256" file))
|
2012-10-21 10:57:50 -04:00
|
|
|
|
|
2013-05-20 17:00:47 -04:00
|
|
|
|
(define derivation
|
|
|
|
|
(if cross-system
|
|
|
|
|
(cut package-cross-derivation store <> cross-system system)
|
|
|
|
|
(cut package-derivation store <> system)))
|
|
|
|
|
|
|
|
|
|
(match input
|
|
|
|
|
(((? string? name) (? package? package))
|
|
|
|
|
(list name (derivation package)))
|
|
|
|
|
(((? string? name) (? package? package)
|
|
|
|
|
(? string? sub-drv))
|
|
|
|
|
(list name (derivation package)
|
|
|
|
|
sub-drv))
|
|
|
|
|
(((? string? name)
|
|
|
|
|
(and (? string?) (? derivation-path?) drv))
|
|
|
|
|
(list name drv))
|
|
|
|
|
(((? string? name)
|
|
|
|
|
(and (? string?) (? file-exists? file)))
|
|
|
|
|
;; Add FILE to the store. When FILE is in the sub-directory of a
|
|
|
|
|
;; store path, it needs to be added anyway, so it can be used as a
|
|
|
|
|
;; source.
|
|
|
|
|
(list name (intern file)))
|
|
|
|
|
(((? string? name) (? origin? source))
|
|
|
|
|
(list name (package-source-derivation store source system)))
|
|
|
|
|
(x
|
|
|
|
|
(raise (condition (&package-input-error
|
|
|
|
|
(package package)
|
|
|
|
|
(input x)))))))
|
2012-10-21 10:57:50 -04:00
|
|
|
|
|
2013-05-20 17:00:47 -04:00
|
|
|
|
(define* (package-derivation store package
|
|
|
|
|
#:optional (system (%current-system)))
|
|
|
|
|
"Return the derivation path and corresponding <derivation> object of
|
|
|
|
|
PACKAGE for SYSTEM."
|
2013-01-20 16:17:58 -05:00
|
|
|
|
;; Compute the derivation and cache the result. Caching is important
|
|
|
|
|
;; because some derivations, such as the implicit inputs of the GNU build
|
|
|
|
|
;; system, will be queried many, many times in a row.
|
|
|
|
|
(cached package system
|
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 17:21:59 -05:00
|
|
|
|
|
|
|
|
|
;; Bind %CURRENT-SYSTEM so that thunked field values can refer
|
|
|
|
|
;; to it.
|
2013-05-24 16:21:24 -04:00
|
|
|
|
(parameterize ((%current-system system)
|
|
|
|
|
(%current-target-system #f))
|
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 17:21:59 -05:00
|
|
|
|
(match package
|
|
|
|
|
(($ <package> name version source (= build-system-builder builder)
|
|
|
|
|
args inputs propagated-inputs native-inputs self-native-input?
|
|
|
|
|
outputs)
|
2013-03-30 17:56:38 -04:00
|
|
|
|
(let* ((inputs (package-transitive-inputs package))
|
2013-05-20 17:00:47 -04:00
|
|
|
|
(input-drvs (map (cut expand-input
|
|
|
|
|
store package <> system)
|
|
|
|
|
inputs))
|
2013-03-30 17:56:38 -04:00
|
|
|
|
(paths (delete-duplicates
|
|
|
|
|
(append-map (match-lambda
|
|
|
|
|
((_ (? package? p) _ ...)
|
|
|
|
|
(package-native-search-paths
|
|
|
|
|
p))
|
|
|
|
|
(_ '()))
|
|
|
|
|
inputs))))
|
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 17:21:59 -05:00
|
|
|
|
|
|
|
|
|
(apply builder
|
|
|
|
|
store (package-full-name package)
|
|
|
|
|
(and source
|
|
|
|
|
(package-source-derivation store source system))
|
2013-03-30 17:56:38 -04:00
|
|
|
|
input-drvs
|
|
|
|
|
#:search-paths paths
|
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 17:21:59 -05:00
|
|
|
|
#:outputs outputs #:system system
|
|
|
|
|
(args))))))))
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2013-05-24 16:21:24 -04:00
|
|
|
|
(define* (package-cross-derivation store package target
|
2013-05-20 17:00:47 -04:00
|
|
|
|
#:optional (system (%current-system)))
|
2013-05-24 16:21:24 -04:00
|
|
|
|
"Cross-build PACKAGE for TARGET (a GNU triplet) from host SYSTEM (a Guix
|
|
|
|
|
system identifying string)."
|
|
|
|
|
(cached package (cons system target)
|
|
|
|
|
|
|
|
|
|
;; Bind %CURRENT-SYSTEM so that thunked field values can refer
|
|
|
|
|
;; to it.
|
|
|
|
|
(parameterize ((%current-system system)
|
|
|
|
|
(%current-target-system target))
|
|
|
|
|
(match package
|
|
|
|
|
(($ <package> name version source
|
|
|
|
|
(= build-system-cross-builder builder)
|
|
|
|
|
args inputs propagated-inputs native-inputs self-native-input?
|
|
|
|
|
outputs)
|
2013-05-27 17:41:35 -04:00
|
|
|
|
(unless builder
|
|
|
|
|
(raise (condition
|
|
|
|
|
(&package-cross-build-system-error
|
|
|
|
|
(package package)))))
|
|
|
|
|
|
2013-05-24 16:21:24 -04:00
|
|
|
|
(let* ((inputs (package-transitive-target-inputs package))
|
|
|
|
|
(input-drvs (map (cut expand-input
|
|
|
|
|
store package <>
|
|
|
|
|
system target)
|
|
|
|
|
inputs))
|
|
|
|
|
(host (append (if self-native-input?
|
|
|
|
|
`(("self" ,package))
|
|
|
|
|
'())
|
|
|
|
|
(package-transitive-native-inputs package)))
|
|
|
|
|
(host-drvs (map (cut expand-input
|
|
|
|
|
store package <> system)
|
|
|
|
|
host))
|
|
|
|
|
(all (append host inputs))
|
|
|
|
|
(paths (delete-duplicates
|
|
|
|
|
(append-map (match-lambda
|
|
|
|
|
((_ (? package? p) _ ...)
|
|
|
|
|
(package-search-paths p))
|
|
|
|
|
(_ '()))
|
|
|
|
|
all)))
|
|
|
|
|
(npaths (delete-duplicates
|
|
|
|
|
(append-map (match-lambda
|
|
|
|
|
((_ (? package? p) _ ...)
|
|
|
|
|
(package-native-search-paths
|
|
|
|
|
p))
|
|
|
|
|
(_ '()))
|
|
|
|
|
all))))
|
|
|
|
|
|
|
|
|
|
(apply builder
|
|
|
|
|
store (package-full-name package) target
|
|
|
|
|
(and source
|
|
|
|
|
(package-source-derivation store source system))
|
|
|
|
|
input-drvs host-drvs
|
|
|
|
|
#:search-paths paths
|
|
|
|
|
#:native-search-paths npaths
|
|
|
|
|
#:outputs outputs #:system system
|
|
|
|
|
(args))))))))
|
2013-02-15 19:37:26 -05:00
|
|
|
|
|
|
|
|
|
(define* (package-output store package output
|
|
|
|
|
#:optional (system (%current-system)))
|
|
|
|
|
"Return the output path of PACKAGE's OUTPUT for SYSTEM---where OUTPUT is the
|
|
|
|
|
symbolic output name, such as \"out\". Note that this procedure calls
|
|
|
|
|
`package-derivation', which is costly."
|
|
|
|
|
(let-values (((_ drv)
|
|
|
|
|
(package-derivation store package system)))
|
|
|
|
|
(derivation-output-path
|
|
|
|
|
(assoc-ref (derivation-outputs drv) output))))
|