~ruther/guix-local

1a75083b0d532d9874ea073aa16a8c63d0fec685 — Ricardo Wurmus 9 years ago 2dca8b2
import cran: Print package stream in the expected order.

* guix/scripts/import/cran.scm (guix-import-cran): Reverse list of packages.
1 files changed, 3 insertions(+), 3 deletions(-)

M guix/scripts/import/cran.scm
M guix/scripts/import/cran.scm => guix/scripts/import/cran.scm +3 -3
@@ 1,6 1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2017 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 99,8 99,8 @@ Import and convert the CRAN package for PACKAGE-NAME.\n"))
                   `(define-public ,(string->symbol name)
                      ,pkg))
                  (_ #f))
                (stream->list (recursive-import package-name
                                                (or (assoc-ref opts 'repo) 'cran))))
                (reverse (stream->list (recursive-import package-name
                                                         (or (assoc-ref opts 'repo) 'cran)))))
           ;; Single import
           (let ((sexp (cran->guix-package package-name
                                           (or (assoc-ref opts 'repo) 'cran))))