3
0
Fork 0
forked from mirrors/nixpkgs

haskellPackages.math-functions: dontCheck on darwin

This commit is contained in:
Mario Rodas 2020-07-05 04:20:00 -05:00
parent 6f730ada4d
commit b1f5e293cb
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

@ -305,6 +305,9 @@ self: super: {
ldap-client = dontCheck super.ldap-client;
lensref = dontCheck super.lensref;
lvmrun = disableHardening (dontCheck super.lvmrun) ["format"];
math-functions = if pkgs.stdenv.isDarwin
then dontCheck super.math-functions # "erf table" test fails on Darwin https://github.com/bos/math-functions/issues/63
else super.math-functions;
matplotlib = dontCheck super.matplotlib;
memcache = dontCheck super.memcache;
metrics = dontCheck super.metrics;