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.
1 parent 5a17d18 commit a235ec9Copy full SHA for a235ec9
flake.nix
@@ -129,7 +129,12 @@
129
then overrideCabal hsuper.ormolu (_: { enableSeparateBinOutput = false; })
130
else hsuper.ormolu;
131
132
- fourmolu = hself.callCabal2nix "fourmolu" inputs.fourmolu {};
+ # Due to the following issue, fixity-th should be disabled, especially for darwin.
133
+ # https://github.com/fourmolu/fourmolu/issues/238
134
+ fourmolu =
135
+ addBuildDepend
136
+ (appendConfigureFlag (hself.callCabal2nix "fourmolu" inputs.fourmolu {}) "-f-fixity-th")
137
+ hself.file-embed;
138
};
139
140
hlsSources =
0 commit comments