diff options
Diffstat (limited to 'gnu/packages/algebra.scm')
-rw-r--r-- | gnu/packages/algebra.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index b704d98dde..1beb739aa7 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Nicolas Goaziou <[email protected]> ;;; Copyright © 2014, 2018 Mark H Weaver <[email protected]> ;;; Copyright © 2016, 2018, 2019, 2021 Ricardo Wurmus <[email protected]> -;;; Copyright © 2017, 2020 Efraim Flashner <[email protected]> +;;; Copyright © 2017, 2020, 2021 Efraim Flashner <[email protected]> ;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2017 Marius Bakke <[email protected]> ;;; Copyright © 2017, 2019, 2021 Eric Bavier <[email protected]> @@ -248,8 +248,8 @@ the real span of the lattice.") "1jm1cz1687cz8pl8lgvmyk3l33cms1xbayv38ca4z1f60qb7zfnc")))) (build-system gnu-build-system) (native-inputs - `(("texlive" ,(texlive-union - (list texlive-amsfonts/patched))))) + `(("texlive" ,(texlive-updmap.cfg + (list texlive-amsfonts))))) (inputs `(("gmp" ,gmp) ("libx11" ,libx11) ("perl" ,perl) @@ -703,12 +703,14 @@ binary.") ("ed" ,ed) ("flex" ,flex) ("texinfo" ,texinfo))) + (inputs + `(("readline" ,readline))) (arguments '(#:configure-flags (list "--with-readline") #:phases (modify-phases %standard-phases - (add-after 'unpack 'autogen + (replace 'bootstrap (lambda _ (invoke "autoreconf" "-vif")))))) (home-page "https://www.gnu.org/software/bc/") |