openblas: NO_AFFINITY=1 fix for musl

This commit is contained in:
Will Dietz 2018-01-13 12:10:21 -06:00
parent 49b7e4337f
commit c8081971f4

View File

@ -115,7 +115,7 @@ stdenv.mkDerivation {
"NUM_THREADS=64"
"INTERFACE64=${if blas64 then "1" else "0"}"
"NO_STATIC=1"
]
] ++ stdenv.lib.optional (stdenv.hostPlatform.libc == "musl") "NO_AFFINITY=1"
++ mapAttrsToList (var: val: var + "=" + val) config;
doCheck = true;