diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2017-06-20 02:08:25 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2017-06-21 23:15:56 +0530 |
commit | f885fc05128d49e66948456bc70b5ff058b190e6 (patch) | |
tree | da72b21dbd765d3b4e556d8fd37eac1aa59747cc /gnu | |
parent | f3853a259b9b0588f6ae4f32c5c56a77ab096e86 (diff) |
gnu: gsl: Update to 2.4.
* gnu/packages/maths.scm (gsl): Update to 2.4.
[arguments]: Remove #:parallel-tests?.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/maths.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 41e6b259e9..1115cef598 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -258,19 +258,18 @@ semiconductors.") (define-public gsl (package (name "gsl") - (version "2.3") + (version "2.4") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gsl/gsl-" version ".tar.gz")) (sha256 (base32 - "1yxdzqjwmi2aid650fa9zyr8llw069x7lm489wx9nnfdi6vh09an")) + "16yfs5n444s03np1naj6yp1fsysd42kdscxzkg0k2yvfjixx0ijd")) (patches (search-patches "gsl-test-i686.patch")))) (build-system gnu-build-system) (arguments - `(#:parallel-tests? #f - ;; Currently there are numerous tests that fail on "exotic" + `(;; Currently there are numerous tests that fail on "exotic" ;; architectures such as aarch64 and ppc64le. ,@(if (string-prefix? "aarch64-linux" (or (%current-target-system) (%current-system))) |