From 5ce31aa6b78f132c198007e62adae451c800acff Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 20 Mar 2018 16:57:56 -0400 Subject: [PATCH] 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 4c28d80be2232304cf185e21f80777bb501600e7. --- pkgs/development/libraries/science/math/atlas/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/science/math/atlas/default.nix b/pkgs/development/libraries/science/math/atlas/default.nix index d971f1a2e0b2..8cca5565bf6f 100644 --- a/pkgs/development/libraries/science/math/atlas/default.nix +++ b/pkgs/development/libraries/science/math/atlas/default.nix @@ -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 ];