diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-10-05 14:52:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-05 15:11:08 +0200 |
commit | ab2cc5cde16ec850c63fa55cc4ce82cf31683344 (patch) | |
tree | bade3a7a51c8ef2d9d3c74eae43809ab9d83de8d /gnu/packages/maths.scm | |
parent | 50948a9026c22f1ef82bff5923ea345dc24d23bd (diff) | |
download | guix-ab2cc5cde16ec850c63fa55cc4ce82cf31683344.tar guix-ab2cc5cde16ec850c63fa55cc4ce82cf31683344.tar.gz |
gnu: gsl: Disable failing tests on i686.
* gnu/packages/patches/gsl-test-i686.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/maths.scm (gsl)[source](patches): New field.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 8f480a66b2..a00b38a7e4 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -186,14 +186,14 @@ semiconductors.") (package (name "gsl") (version "2.2.1") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://gnu/gsl/gsl-" - version ".tar.gz")) - (sha256 - (base32 - "095hp01d8lkqdvv0p1k25kvbisgfdmvx1rzpyc2i8kl2n33kvlhk")))) + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/gsl/gsl-" + version ".tar.gz")) + (sha256 + (base32 + "095hp01d8lkqdvv0p1k25kvbisgfdmvx1rzpyc2i8kl2n33kvlhk")) + (patches (search-patches "gsl-test-i686.patch")))) (build-system gnu-build-system) (arguments `(#:parallel-tests? #f)) |