From 0ff19d8d056bc8710557f34deef5c8810c403b50 Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Mon, 29 Apr 2019 17:49:55 -0400 Subject: [PATCH] lapack: Make without atlas default as currently broken (#49594) Atlas is actually entirely removed in latest upstream. --- temporary/all-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/temporary/all-packages.nix b/temporary/all-packages.nix index 8fe305c..1b04b47 100644 --- a/temporary/all-packages.nix +++ b/temporary/all-packages.nix @@ -17,6 +17,9 @@ self: super: pkgs: with pkgs; { ]; } ); + # ATLAS build is broken and was entirely removed in November (#49594) + liblapack = super.liblapack.override { atlas = null; }; + # https://github.com/NixOS/nixpkgs/issues/44426 python27 = super.python27.override { packageOverrides = pythonOverrides; }; python34 = super.python34.override { packageOverrides = pythonOverrides; };