We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
aarch64-darwin
flake.nix
1 parent 1849a87 commit ff0ccd6Copy full SHA for ff0ccd6
flake.nix
@@ -97,6 +97,12 @@
97
url = "https://hackage.haskell.org/package/implicit-hie-cradle-0.3.0.5/implicit-hie-cradle-0.3.0.5.tar.gz";
98
sha256 = "15a7g9x6cjk2b92hb2wilxx4550msxp1pmk5a2shiva821qaxnfq";
99
}) { };
100
+
101
+ # https://github.com/NixOS/nixpkgs/issues/140774
102
+ ormolu =
103
+ if final.system == "aarch64-darwin"
104
+ then overrideCabal hsuper.ormolu (_: { enableSeparateBinOutput = false; })
105
+ else hsuper.ormolu;
106
};
107
108
hlsSources =
@@ -135,7 +141,7 @@
135
141
chmod +x $dest
136
142
'';
137
143
138
- } // (flake-utils.lib.eachSystem [ "x86_64-linux" "x86_64-darwin" ])
144
+ } // (flake-utils.lib.eachSystem [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ])
139
145
(system:
140
146
let
147
pkgs = import nixpkgs {
0 commit comments