lapack: Make without atlas default as currently broken (#49594)

Atlas is actually entirely removed in latest upstream.
This commit is contained in:
Tyson Whitehead
2019-04-29 17:49:55 -04:00
parent 91cdf647a4
commit 0ff19d8d05

View File

@@ -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; };