diff --git a/temporary/all-packages.nix b/temporary/all-packages.nix index f9aeda7..4f1287e 100644 --- a/temporary/all-packages.nix +++ b/temporary/all-packages.nix @@ -17,6 +17,18 @@ self: super: pkgs: with pkgs; { ]; } ); + # https://github.com/NixOS/nixpkgs/issues/92458 and https://github.com/NixOS/nixpkgs/pull/108709 + openblas = super.openblas.overrideAttrs (attrs: rec { + version = "0.3.12"; + src = fetchFromGitHub { + owner = "xianyi"; + repo = "OpenBLAS"; + rev = "v${version}"; + sha256 = "0mk1kjkr96bvvcq2zigzjrs0cnhwsf6gfi0855mp9yifn8lvp20y"; + }; + patches = [ ]; + } ); + # https://github.com/NixOS/nixpkgs/issues/44426 python27 = super.python27.override { packageOverrides = pythonOverrides; }; python36 = super.python36.override { packageOverrides = pythonOverrides; };