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)
|
|
|
|
|
#: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)
|
2012-08-23 17:09:13 -04:00
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
Re-export `%current-system' from (guix packages).
* guix/packages.scm: Re-export `%current-system'.
* gnu/packages/bdw-gc.scm, gnu/packages/gawk.scm,
gnu/packages/gperf.scm, gnu/packages/libffi.scm,
gnu/packages/libsigsegv.scm, gnu/packages/libunistring.scm,
gnu/packages/lout.scm, gnu/packages/m4.scm,
gnu/packages/multiprecision.scm, gnu/packages/ncurses.scm,
gnu/packages/perl.scm, gnu/packages/pkg-config.scm,
gnu/packages/readline.scm, gnu/packages/recutils.scm,
gnu/packages/scheme.scm: Remove (guix utils) import.
2013-02-10 11:23:48 -05:00
|
|
|
|
#:re-export (%current-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
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
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
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
2012-07-07 14:14:20 -04:00
|
|
|
|
package-transitive-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?
|
2012-08-23 17:09:13 -04:00
|
|
|
|
package-error-invalid-input))
|
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
|
|
|
|
|
2012-06-28 17:15:24 -04:00
|
|
|
|
;; A package.
|
2012-08-23 17:09:13 -04:00
|
|
|
|
|
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
|
|
|
|
|
(default '()))
|
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")))
|
|
|
|
|
(search-paths package-search-paths ; list of (ENV-VAR (DIRS ...))
|
|
|
|
|
(default '())) ; tuples; see
|
|
|
|
|
; `set-path-environment-variable'
|
|
|
|
|
; (aka. "setup-hook")
|
|
|
|
|
|
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)))))
|
|
|
|
|
|
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))
|
|
|
|
|
|
|
|
|
|
|
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))))
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
|
2012-06-27 19:24:34 -04:00
|
|
|
|
(define* (package-derivation store package
|
|
|
|
|
#:optional (system (%current-system)))
|
2013-01-20 16:17:58 -05:00
|
|
|
|
"Return the derivation path and corresponding <derivation> object of
|
|
|
|
|
PACKAGE for SYSTEM."
|
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
|
|
|
|
|
|
|
|
|
(define expand-input
|
|
|
|
|
;; Expand the given input tuple such that it contains only
|
|
|
|
|
;; references to derivation paths or store paths.
|
|
|
|
|
(match-lambda
|
|
|
|
|
(((? string? name) (? package? package))
|
2012-10-25 17:41:15 -04:00
|
|
|
|
(list name (package-derivation store package system)))
|
2012-10-21 10:57:50 -04:00
|
|
|
|
(((? string? name) (? package? package)
|
|
|
|
|
(? string? sub-drv))
|
2012-10-25 17:41:15 -04:00
|
|
|
|
(list name (package-derivation store package system)
|
2012-10-21 10:57:50 -04:00
|
|
|
|
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))
|
2012-10-25 17:41:15 -04:00
|
|
|
|
(list name (package-source-derivation store source system)))
|
2012-10-21 10:57:50 -04:00
|
|
|
|
(x
|
|
|
|
|
(raise (condition (&package-input-error
|
|
|
|
|
(package package)
|
|
|
|
|
(input x)))))))
|
|
|
|
|
|
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.
|
|
|
|
|
(parameterize ((%current-system system))
|
|
|
|
|
(match package
|
|
|
|
|
(($ <package> name version source (= build-system-builder builder)
|
|
|
|
|
args inputs propagated-inputs native-inputs self-native-input?
|
|
|
|
|
outputs)
|
|
|
|
|
;; TODO: For `search-paths', add a builder prologue that calls
|
|
|
|
|
;; `set-path-environment-variable'.
|
|
|
|
|
(let ((inputs (map expand-input
|
|
|
|
|
(package-transitive-inputs package))))
|
|
|
|
|
|
|
|
|
|
(apply builder
|
|
|
|
|
store (package-full-name package)
|
|
|
|
|
(and source
|
|
|
|
|
(package-source-derivation store source system))
|
|
|
|
|
inputs
|
|
|
|
|
#:outputs outputs #:system system
|
|
|
|
|
(args))))))))
|
2012-06-27 19:24:34 -04:00
|
|
|
|
|
|
|
|
|
(define* (package-cross-derivation store package)
|
|
|
|
|
;; TODO
|
|
|
|
|
#f)
|
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))))
|