openblas: disable static libs

Disable static on openblas. This should save about 57M from closure sizes.
This commit is contained in:
Matthew Bauer 2017-02-12 18:45:44 -06:00
parent 71ca18ae32
commit bd8654f45d

View file

@ -98,6 +98,7 @@ stdenv.mkDerivation {
''PREFIX="''$(out)"''
"NUM_THREADS=64"
"INTERFACE64=${if blas64 then "1" else "0"}"
"NO_STATIC=1"
]
++ mapAttrsToList (var: val: var + "=" + val) config;