2012-11-01 01:46:15 +01:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
# aside from this initial boilerplate, this is actually -*- scheme -*- code
|
|
|
|
|
|
|
|
|
|
prefix="@prefix@"
|
|
|
|
|
datarootdir="@datarootdir@"
|
|
|
|
|
|
|
|
|
|
GUILE_LOAD_COMPILED_PATH="@guilemoduledir@:$GUILE_LOAD_COMPILED_PATH"
|
|
|
|
|
export GUILE_LOAD_COMPILED_PATH
|
|
|
|
|
|
|
|
|
|
main='(module-ref (resolve-interface '\''(guix-package)) '\'guix-package')'
|
|
|
|
|
exec ${GUILE-@GUILE@} -L "@guilemoduledir@" -l "$0" \
|
|
|
|
|
-c "(apply $main (cdr (command-line)))" "$@"
|
|
|
|
|
!#
|
|
|
|
|
;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
|
|
|
|
|
;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; 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.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; 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
|
|
|
|
|
;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix-package)
|
2012-11-03 21:19:43 +01:00
|
|
|
|
#:use-module (guix ui)
|
2012-11-01 01:46:15 +01:00
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix utils)
|
2012-12-13 22:53:05 +01:00
|
|
|
|
#:use-module (guix config)
|
2012-11-01 01:46:15 +01:00
|
|
|
|
#:use-module (ice-9 ftw)
|
|
|
|
|
#:use-module (ice-9 format)
|
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (ice-9 regex)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-37)
|
2012-11-19 23:02:59 +01:00
|
|
|
|
#:use-module (distro)
|
2012-11-07 19:13:10 +01:00
|
|
|
|
#:use-module (distro packages guile)
|
2012-11-01 01:46:15 +01:00
|
|
|
|
#:export (guix-package))
|
|
|
|
|
|
|
|
|
|
(define %store
|
|
|
|
|
(open-connection))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; User environment.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define %user-environment-directory
|
|
|
|
|
(and=> (getenv "HOME")
|
|
|
|
|
(cut string-append <> "/.guix-profile")))
|
|
|
|
|
|
|
|
|
|
(define %profile-directory
|
2012-12-13 22:53:05 +01:00
|
|
|
|
(string-append %state-directory "/profiles/"
|
2012-11-01 01:46:15 +01:00
|
|
|
|
(or (and=> (getenv "USER")
|
|
|
|
|
(cut string-append "per-user/" <>))
|
|
|
|
|
"default")))
|
|
|
|
|
|
|
|
|
|
(define %current-profile
|
2012-12-13 23:02:22 +01:00
|
|
|
|
;; Call it `guix-profile', not `profile', to allow Guix profiles to
|
|
|
|
|
;; coexist with Nix profiles.
|
|
|
|
|
(string-append %profile-directory "/guix-profile"))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
|
|
|
|
|
(define (profile-manifest profile)
|
|
|
|
|
"Return the PROFILE's manifest."
|
|
|
|
|
(let ((manifest (string-append profile "/manifest")))
|
|
|
|
|
(if (file-exists? manifest)
|
|
|
|
|
(call-with-input-file manifest read)
|
|
|
|
|
'(manifest (version 0) (packages ())))))
|
|
|
|
|
|
|
|
|
|
(define (manifest-packages manifest)
|
|
|
|
|
"Return the packages listed in MANIFEST."
|
|
|
|
|
(match manifest
|
|
|
|
|
(('manifest ('version 0) ('packages packages))
|
|
|
|
|
packages)
|
|
|
|
|
(_
|
|
|
|
|
(error "unsupported manifest format" manifest))))
|
|
|
|
|
|
|
|
|
|
(define (latest-profile-number profile)
|
|
|
|
|
"Return the identifying number of the latest generation of PROFILE.
|
|
|
|
|
PROFILE is the name of the symlink to the current generation."
|
|
|
|
|
(define %profile-rx
|
|
|
|
|
(make-regexp (string-append "^" (regexp-quote (basename profile))
|
|
|
|
|
"-([0-9]+)")))
|
|
|
|
|
|
|
|
|
|
(define* (scandir name #:optional (select? (const #t))
|
|
|
|
|
(entry<? (@ (ice-9 i18n) string-locale<?)))
|
|
|
|
|
;; XXX: Bug-fix version introduced in Guile v2.0.6-62-g139ce19.
|
|
|
|
|
(define (enter? dir stat result)
|
|
|
|
|
(and stat (string=? dir name)))
|
|
|
|
|
|
|
|
|
|
(define (visit basename result)
|
|
|
|
|
(if (select? basename)
|
|
|
|
|
(cons basename result)
|
|
|
|
|
result))
|
|
|
|
|
|
|
|
|
|
(define (leaf name stat result)
|
|
|
|
|
(and result
|
|
|
|
|
(visit (basename name) result)))
|
|
|
|
|
|
|
|
|
|
(define (down name stat result)
|
|
|
|
|
(visit "." '()))
|
|
|
|
|
|
|
|
|
|
(define (up name stat result)
|
|
|
|
|
(visit ".." result))
|
|
|
|
|
|
|
|
|
|
(define (skip name stat result)
|
|
|
|
|
;; All the sub-directories are skipped.
|
|
|
|
|
(visit (basename name) result))
|
|
|
|
|
|
|
|
|
|
(define (error name* stat errno result)
|
|
|
|
|
(if (string=? name name*) ; top-level NAME is unreadable
|
|
|
|
|
result
|
|
|
|
|
(visit (basename name*) result)))
|
|
|
|
|
|
|
|
|
|
(and=> (file-system-fold enter? leaf down up skip error #f name lstat)
|
|
|
|
|
(lambda (files)
|
|
|
|
|
(sort files entry<?))))
|
|
|
|
|
|
|
|
|
|
(match (scandir (dirname profile)
|
|
|
|
|
(cut regexp-exec %profile-rx <>))
|
|
|
|
|
(#f ; no profile directory
|
|
|
|
|
0)
|
|
|
|
|
(() ; no profiles
|
|
|
|
|
0)
|
|
|
|
|
((profiles ...) ; former profiles around
|
|
|
|
|
(let ((numbers (map (compose string->number
|
|
|
|
|
(cut match:substring <> 1)
|
|
|
|
|
(cut regexp-exec %profile-rx <>))
|
|
|
|
|
profiles)))
|
|
|
|
|
(fold (lambda (number highest)
|
|
|
|
|
(if (> number highest)
|
|
|
|
|
number
|
|
|
|
|
highest))
|
|
|
|
|
0
|
|
|
|
|
numbers)))))
|
|
|
|
|
|
|
|
|
|
(define (profile-derivation store packages)
|
|
|
|
|
"Return a derivation that builds a profile (a user environment) with
|
|
|
|
|
all of PACKAGES, a list of name/version/output/path tuples."
|
|
|
|
|
(define builder
|
|
|
|
|
`(begin
|
|
|
|
|
(use-modules (ice-9 pretty-print)
|
|
|
|
|
(guix build union))
|
|
|
|
|
|
|
|
|
|
(setvbuf (current-output-port) _IOLBF)
|
|
|
|
|
(setvbuf (current-error-port) _IOLBF)
|
|
|
|
|
|
|
|
|
|
(let ((output (assoc-ref %outputs "out"))
|
|
|
|
|
(inputs (map cdr %build-inputs)))
|
|
|
|
|
(format #t "building user environment `~a' with ~a packages...~%"
|
|
|
|
|
output (length inputs))
|
|
|
|
|
(union-build output inputs)
|
|
|
|
|
(call-with-output-file (string-append output "/manifest")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(pretty-print '(manifest (version 0)
|
|
|
|
|
(packages ,packages))
|
|
|
|
|
p))))))
|
|
|
|
|
|
|
|
|
|
(build-expression->derivation store "user-environment"
|
|
|
|
|
(%current-system)
|
|
|
|
|
builder
|
|
|
|
|
(map (match-lambda
|
|
|
|
|
((name version output path)
|
|
|
|
|
`(,name ,path)))
|
|
|
|
|
packages)
|
|
|
|
|
#:modules '((guix build union))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Command-line options.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define %default-options
|
|
|
|
|
;; Alist of default option values.
|
|
|
|
|
`((profile . ,%current-profile)))
|
|
|
|
|
|
|
|
|
|
(define (show-help)
|
|
|
|
|
(display (_ "Usage: guix-package [OPTION]... PACKAGES...
|
|
|
|
|
Install, remove, or upgrade PACKAGES in a single transaction.\n"))
|
|
|
|
|
(display (_ "
|
|
|
|
|
-i, --install=PACKAGE install PACKAGE"))
|
|
|
|
|
(display (_ "
|
|
|
|
|
-r, --remove=PACKAGE remove PACKAGE"))
|
|
|
|
|
(display (_ "
|
|
|
|
|
-u, --upgrade=REGEXP upgrade all the installed packages matching REGEXP"))
|
|
|
|
|
(newline)
|
|
|
|
|
(display (_ "
|
|
|
|
|
-p, --profile=PROFILE use PROFILE instead of the user's default profile"))
|
|
|
|
|
(display (_ "
|
|
|
|
|
-n, --dry-run show what would be done without actually doing it"))
|
|
|
|
|
(display (_ "
|
|
|
|
|
-b, --bootstrap use the bootstrap Guile to build the profile"))
|
2012-12-12 14:59:16 +01:00
|
|
|
|
(display (_ "
|
|
|
|
|
--verbose produce verbose output"))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
(newline)
|
|
|
|
|
(display (_ "
|
2012-11-19 22:39:45 +01:00
|
|
|
|
-I, --list-installed[=REGEXP]
|
|
|
|
|
list installed packages matching REGEXP"))
|
2012-11-19 23:02:59 +01:00
|
|
|
|
(display (_ "
|
|
|
|
|
-A, --list-available[=REGEXP]
|
|
|
|
|
list available packages matching REGEXP"))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(newline)
|
|
|
|
|
(display (_ "
|
2012-11-01 01:46:15 +01:00
|
|
|
|
-h, --help display this help and exit"))
|
|
|
|
|
(display (_ "
|
|
|
|
|
-V, --version display version information and exit"))
|
|
|
|
|
(newline)
|
|
|
|
|
(format #t (_ "
|
|
|
|
|
Report bugs to: ~a.~%") "@PACKAGE_BUGREPORT@"))
|
|
|
|
|
|
|
|
|
|
(define %options
|
|
|
|
|
;; Specification of the command-line options.
|
|
|
|
|
(list (option '(#\h "help") #f #f
|
|
|
|
|
(lambda args
|
|
|
|
|
(show-help)
|
|
|
|
|
(exit 0)))
|
|
|
|
|
(option '(#\V "version") #f #f
|
|
|
|
|
(lambda args
|
2012-11-03 21:19:43 +01:00
|
|
|
|
(show-version-and-exit "guix-package")))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
|
|
|
|
|
(option '(#\i "install") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'install arg result)))
|
|
|
|
|
(option '(#\r "remove") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'remove arg result)))
|
|
|
|
|
(option '(#\p "profile") #t #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'profile arg
|
|
|
|
|
(alist-delete 'profile result))))
|
|
|
|
|
(option '(#\n "dry-run") #f #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'dry-run? #t result)))
|
|
|
|
|
(option '(#\b "bootstrap") #f #f
|
|
|
|
|
(lambda (opt name arg result)
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(alist-cons 'bootstrap? #t result)))
|
2012-12-12 14:59:16 +01:00
|
|
|
|
(option '("verbose") #f #f
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(alist-cons 'verbose? #t result)))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(option '(#\I "list-installed") #f #t
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(cons `(query list-installed ,(or arg ""))
|
2012-11-19 23:02:59 +01:00
|
|
|
|
result)))
|
|
|
|
|
(option '(#\A "list-available") #f #t
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(cons `(query list-available ,(or arg ""))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
result)))))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Entry point.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (guix-package . args)
|
|
|
|
|
(define (parse-options)
|
|
|
|
|
;; Return the alist of option values.
|
|
|
|
|
(args-fold args %options
|
|
|
|
|
(lambda (opt name arg result)
|
|
|
|
|
(leave (_ "~A: unrecognized option~%") name))
|
|
|
|
|
(lambda (arg result)
|
|
|
|
|
(alist-cons 'argument arg result))
|
|
|
|
|
%default-options))
|
|
|
|
|
|
|
|
|
|
(define (show-what-to-build drv dry-run?)
|
|
|
|
|
;; Show what will/would be built in realizing the derivations listed
|
|
|
|
|
;; in DRV.
|
|
|
|
|
(let* ((req (append-map (lambda (drv-path)
|
|
|
|
|
(let ((d (call-with-input-file drv-path
|
|
|
|
|
read-derivation)))
|
|
|
|
|
(derivation-prerequisites-to-build %store d)))
|
|
|
|
|
drv))
|
|
|
|
|
(req* (delete-duplicates
|
|
|
|
|
(append (remove (compose (cut valid-path? %store <>)
|
|
|
|
|
derivation-path->output-path)
|
|
|
|
|
drv)
|
|
|
|
|
(map derivation-input-path req)))))
|
|
|
|
|
(if dry-run?
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[the following derivation would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[the following derivations would be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length req*))
|
|
|
|
|
(null? req*) req*)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(N_ "~:[the following derivation will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
"~:[the following derivations will be built:~%~{ ~a~%~}~;~]"
|
|
|
|
|
(length req*))
|
|
|
|
|
(null? req*) req*))))
|
|
|
|
|
|
|
|
|
|
(define (find-package name)
|
|
|
|
|
;; Find the package NAME; NAME may contain a version number and a
|
|
|
|
|
;; sub-derivation name.
|
|
|
|
|
(define request name)
|
|
|
|
|
|
|
|
|
|
(let*-values (((name sub-drv)
|
|
|
|
|
(match (string-rindex name #\:)
|
|
|
|
|
(#f (values name "out"))
|
2012-11-07 19:14:22 +01:00
|
|
|
|
(colon (values (substring name 0 colon)
|
|
|
|
|
(substring name (+ 1 colon))))))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
((name version)
|
2012-11-04 01:29:18 +01:00
|
|
|
|
(package-name->name+version name)))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
(match (find-packages-by-name name version)
|
|
|
|
|
((p)
|
2012-11-19 23:21:54 +01:00
|
|
|
|
(list name (package-version p) sub-drv p))
|
2012-11-19 22:19:26 +01:00
|
|
|
|
((p p* ...)
|
2012-11-01 01:46:15 +01:00
|
|
|
|
(format (current-error-port)
|
|
|
|
|
(_ "warning: ambiguous package specification `~a'~%")
|
|
|
|
|
request)
|
|
|
|
|
(format (current-error-port)
|
2012-11-19 23:21:54 +01:00
|
|
|
|
(_ "warning: choosing ~a from ~a~%")
|
|
|
|
|
(package-full-name p)
|
|
|
|
|
(location->string (package-location p)))
|
|
|
|
|
(list name (package-version p) sub-drv p))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
(()
|
|
|
|
|
(leave (_ "~a: package not found~%") request)))))
|
|
|
|
|
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(define (process-actions opts)
|
|
|
|
|
;; Process any install/remove/upgrade action from OPTS.
|
|
|
|
|
(let* ((dry-run? (assoc-ref opts 'dry-run?))
|
2012-12-12 14:59:16 +01:00
|
|
|
|
(verbose? (assoc-ref opts 'verbose?))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(profile (assoc-ref opts 'profile))
|
|
|
|
|
(install (filter-map (match-lambda
|
|
|
|
|
(('install . (? store-path?))
|
|
|
|
|
#f)
|
|
|
|
|
(('install . package)
|
|
|
|
|
(find-package package))
|
|
|
|
|
(_ #f))
|
|
|
|
|
opts))
|
|
|
|
|
(drv (filter-map (match-lambda
|
|
|
|
|
((name version sub-drv
|
|
|
|
|
(? package? package))
|
|
|
|
|
(package-derivation %store package))
|
|
|
|
|
(_ #f))
|
|
|
|
|
install))
|
|
|
|
|
(install* (append
|
|
|
|
|
(filter-map (match-lambda
|
|
|
|
|
(('install . (? store-path? path))
|
2012-11-19 23:51:08 +01:00
|
|
|
|
(let-values (((name version)
|
|
|
|
|
(package-name->name+version
|
|
|
|
|
(store-path-package-name
|
|
|
|
|
path))))
|
|
|
|
|
`(,name ,version #f ,path)))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(_ #f))
|
|
|
|
|
opts)
|
|
|
|
|
(map (lambda (tuple drv)
|
|
|
|
|
(match tuple
|
|
|
|
|
((name version sub-drv _)
|
|
|
|
|
(let ((output-path
|
|
|
|
|
(derivation-path->output-path
|
|
|
|
|
drv sub-drv)))
|
|
|
|
|
`(,name ,version ,sub-drv ,output-path)))))
|
|
|
|
|
install drv)))
|
|
|
|
|
(remove (filter-map (match-lambda
|
|
|
|
|
(('remove . package)
|
|
|
|
|
package)
|
|
|
|
|
(_ #f))
|
|
|
|
|
opts))
|
|
|
|
|
(packages (append install*
|
2012-12-12 00:01:17 +01:00
|
|
|
|
(fold (lambda (package result)
|
|
|
|
|
(match package
|
|
|
|
|
((name _ ...)
|
|
|
|
|
(alist-delete name result))))
|
|
|
|
|
(fold alist-delete
|
|
|
|
|
(manifest-packages
|
|
|
|
|
(profile-manifest profile))
|
|
|
|
|
remove)
|
|
|
|
|
install*))))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
|
|
|
|
|
(show-what-to-build drv dry-run?)
|
|
|
|
|
|
|
|
|
|
(or dry-run?
|
|
|
|
|
(and (build-derivations %store drv)
|
|
|
|
|
(let* ((prof-drv (profile-derivation %store packages))
|
|
|
|
|
(prof (derivation-path->output-path prof-drv))
|
2012-12-12 00:01:17 +01:00
|
|
|
|
(old-drv (profile-derivation
|
|
|
|
|
%store (manifest-packages
|
|
|
|
|
(profile-manifest profile))))
|
|
|
|
|
(old-prof (derivation-path->output-path old-drv))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(number (latest-profile-number profile))
|
|
|
|
|
(name (format #f "~a/~a-~a-link"
|
|
|
|
|
(dirname profile)
|
|
|
|
|
(basename profile) (+ 1 number))))
|
2012-12-12 00:01:17 +01:00
|
|
|
|
(if (string=? old-prof prof)
|
|
|
|
|
(format (current-error-port) (_ "nothing to be done~%"))
|
2012-12-12 14:59:16 +01:00
|
|
|
|
(and (parameterize ((current-build-output-port
|
|
|
|
|
(if verbose?
|
|
|
|
|
(current-error-port)
|
|
|
|
|
(%make-void-port "w"))))
|
|
|
|
|
(build-derivations %store (list prof-drv)))
|
2012-12-12 00:01:17 +01:00
|
|
|
|
(begin
|
|
|
|
|
(symlink prof name)
|
|
|
|
|
(when (file-exists? profile)
|
|
|
|
|
(delete-file profile))
|
|
|
|
|
(symlink name profile)))))))))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
|
|
|
|
|
(define (process-query opts)
|
|
|
|
|
;; Process any query specified by OPTS. Return #t when a query was
|
|
|
|
|
;; actually processed, #f otherwise.
|
|
|
|
|
(let ((profile (assoc-ref opts 'profile)))
|
|
|
|
|
(match (assoc-ref opts 'query)
|
|
|
|
|
(('list-installed regexp)
|
|
|
|
|
(let* ((regexp (and regexp (make-regexp regexp)))
|
|
|
|
|
(manifest (profile-manifest profile))
|
|
|
|
|
(installed (manifest-packages manifest)))
|
|
|
|
|
(for-each (match-lambda
|
|
|
|
|
((name version output path)
|
|
|
|
|
(when (or (not regexp)
|
|
|
|
|
(regexp-exec regexp name))
|
|
|
|
|
(format #t "~a\t~a\t~a\t~a~%"
|
|
|
|
|
name (or version "?") output path))))
|
2012-11-19 23:02:59 +01:00
|
|
|
|
installed)
|
|
|
|
|
#t))
|
|
|
|
|
(('list-available regexp)
|
|
|
|
|
(let* ((regexp (and regexp (make-regexp regexp)))
|
|
|
|
|
(available (fold-packages
|
|
|
|
|
(lambda (p r)
|
|
|
|
|
(let ((n (package-name p)))
|
|
|
|
|
(if regexp
|
|
|
|
|
(if (regexp-exec regexp n)
|
|
|
|
|
(cons p r)
|
|
|
|
|
r)
|
|
|
|
|
(cons p r))))
|
|
|
|
|
'())))
|
|
|
|
|
(for-each (lambda (p)
|
|
|
|
|
(format #t "~a\t~a\t~a~%"
|
|
|
|
|
(package-name p)
|
|
|
|
|
(package-version p)
|
|
|
|
|
(location->string (package-location p))))
|
|
|
|
|
(sort available
|
|
|
|
|
(lambda (p1 p2)
|
|
|
|
|
(string<? (package-name p1)
|
|
|
|
|
(package-name p2)))))
|
|
|
|
|
#t))
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(_ #f))))
|
|
|
|
|
|
2012-11-01 01:46:15 +01:00
|
|
|
|
(setlocale LC_ALL "")
|
|
|
|
|
(textdomain "guix")
|
|
|
|
|
(setvbuf (current-output-port) _IOLBF)
|
|
|
|
|
(setvbuf (current-error-port) _IOLBF)
|
|
|
|
|
|
|
|
|
|
(let ((opts (parse-options)))
|
2012-11-03 21:23:16 +01:00
|
|
|
|
(with-error-handling
|
2012-11-19 22:39:45 +01:00
|
|
|
|
(or (process-query opts)
|
|
|
|
|
(parameterize ((%guile-for-build
|
|
|
|
|
(package-derivation %store
|
|
|
|
|
(if (assoc-ref opts 'bootstrap?)
|
|
|
|
|
(@@ (distro packages base)
|
|
|
|
|
%bootstrap-guile)
|
|
|
|
|
guile-2.0))))
|
|
|
|
|
(process-actions opts))))))
|
2012-11-01 01:46:15 +01:00
|
|
|
|
|
|
|
|
|
;; Local Variables:
|
|
|
|
|
;; eval: (put 'guard 'scheme-indent-function 1)
|
|
|
|
|
;; End:
|