diff options
author | Tobias Geerinckx-Rice <[email protected]> | 2018-01-26 22:43:06 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <[email protected]> | 2018-01-29 00:23:27 +0100 |
commit | 59cd0ba4abd7df1079cc9b1c92b5a363c2e25ef4 (patch) | |
tree | e726775958d0d00be220b0b127ff58f44d07a286 | |
parent | af38b2dd5e050f14e8f9cb308662c826efeabe3d (diff) |
gnu: openspecfun: Update to 0.5.3.
* gnu/packages/maths.scm (openspecfun): Update to 0.5.3.
-rw-r--r-- | gnu/packages/maths.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index bce6627379..d4e9914e18 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -20,7 +20,7 @@ ;;; Copyright © 2017 Ben Woodcroft <[email protected]> ;;; Copyright © 2017 Theodoros Foradis <[email protected]> ;;; Copyright © 2017 Arun Isaac <[email protected]> -;;; Copyright © 2017 Tobias Geerinckx-Rice <[email protected]> +;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2017 Dave Love <me@[email protected]> ;;; ;;; This file is part of GNU Guix. @@ -2812,7 +2812,7 @@ environments.") (define-public openspecfun (package (name "openspecfun") - (version "0.5.2") + (version "0.5.3") (source (origin (method url-fetch) @@ -2821,14 +2821,15 @@ environments.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1y5b2h6f2k72536kym3vzy3li3bhpd23x463g7hdmjdi3cncavz1")))) + "1rs1bv8jq751fv9vq79890wqf9xlbjc7lvz3ighzyfczbyjcf18m")))) (build-system gnu-build-system) (arguments - '(#:tests? #f ;no "check" target + '(#:tests? #f ; no "check" target #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))) - ;; no configure script - #:phases (modify-phases %standard-phases (delete 'configure)))) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) ; no configure script (inputs `(("fortran" ,gfortran))) (home-page "https://github.com/JuliaLang/openspecfun") |