3
0
Fork 0
forked from mirrors/nixpkgs

Revert "atlas: 3.10.2 -> 3.10.3"

3.10.3 segfaults with glibc 2.27, and since it was fairly recently
added via autoupdate hopefully it's not too strongly needed yet.

This reverts commit 4c28d80be2.
This commit is contained in:
Shea Levy 2018-03-20 16:57:56 -04:00
parent c6b71f55fd
commit 5ce31aa6b7
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27

View file

@ -45,7 +45,9 @@
let
inherit (stdenv.lib) optional optionalString;
version = "3.10.3";
# Don't upgrade until https://github.com/math-atlas/math-atlas/issues/44
# is resolved.
version = "3.10.2";
in
stdenv.mkDerivation {
@ -53,7 +55,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "mirror://sourceforge/math-atlas/atlas${version}.tar.bz2";
sha256 = "1dyjlq3fiparvm8ypwk6rsmjzmnwk81l88gkishphpvc79ryp216";
sha256 = "0bqh4bdnjdyww4mcpg6kn0x7338mfqbdgysn97dzrwwb26di7ars";
};
buildInputs = [ gfortran ];