We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e981f5e + eed0ee0 commit 1e90553Copy full SHA for 1e90553
pkgs/development/r-modules/default.nix
@@ -1616,6 +1616,12 @@ let
1616
'';
1617
});
1618
1619
+ BiocParallel = old.BiocParallel.overrideAttrs (attrs: {
1620
+ env = (attrs.env or { }) // {
1621
+ NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + lib.optionalString stdenv.hostPlatform.isDarwin " -Wno-error=missing-template-arg-list-after-template-kw";
1622
+ };
1623
+ });
1624
+
1625
rstan = old.rstan.overrideAttrs (attrs: {
1626
env = (attrs.env or { }) // {
1627
NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + " -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION";
0 commit comments