~ruther/guix-local

de8bcdaeb5a828d8cee85f8700e23e15b49f4e24 — Ludovic Courtès 12 years ago f83e943
packages: Make the 'output' parameter of 'package-output' optional.

* guix/packages.scm (package-output): Make the 'output' parameter
  optional.
1 files changed, 2 insertions(+), 2 deletions(-)

M guix/packages.scm
M guix/packages.scm => guix/packages.scm +2 -2
@@ 462,8 462,8 @@ system identifying string)."
                        #:outputs outputs #:system system
                        (args))))))))

(define* (package-output store package output
                         #:optional (system (%current-system)))
(define* (package-output store package
                         #:optional (output "out") (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."