diff options
Diffstat (limited to 'gnu/packages/shells.scm')
| -rw-r--r-- | gnu/packages/shells.scm | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 26cbbe67dd..a2a4b70bce 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -20,6 +20,7 @@  ;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>  ;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net>  ;;; Copyright © 2022 Andrew Tropin <andrew@trop.in> +;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>  ;;;  ;;; This file is part of GNU Guix.  ;;; @@ -398,7 +399,10 @@ written by Paul Haahr and Byron Rakitzis.")                (patch-flags '("-p0"))))      (build-system gnu-build-system)      (native-inputs -     (list autoconf perl)) +     (append (if (target-riscv64?) +                 (list config) +                 '()) +             (list autoconf perl)))      (inputs       (list ncurses))      (arguments @@ -846,7 +850,7 @@ Shell (pdksh).")  (define-public oil    (package      (name "oil") -    (version "0.12.9") +    (version "0.14.2")      (source       ;; oil's sources contain a modified version of CPython 2.7.13.       ;; According to https://www.oilshell.org/blog/2017/05/05.html @@ -859,7 +863,7 @@ Shell (pdksh).")         (uri (string-append "https://www.oilshell.org/download/oil-"                             version ".tar.gz"))         (sha256 -        (base32 "047gjar5lkbms4gdp3063njnqc6fl6p0dcx8bbpi1cdn1956yh1s")))) +        (base32 "0qsfkav6a70nvp27ilab7zilmihw4ygga48a0dkxa14q9giwlgwr"))))      (build-system gnu-build-system)      (arguments       (list #:strip-binaries? #f         ; strip breaks the binary | 
