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 dd69152 commit 133c451Copy full SHA for 133c451
flake.nix
@@ -32,6 +32,7 @@
32
"x86_64-linux"
33
"x86_64-darwin"
34
"aarch64-darwin"
35
+ "aarch64-linux"
36
];
37
in
38
inputs.utils.lib.eachSystem supportedSystems (system:
@@ -176,10 +177,7 @@
176
177
'';
178
179
crossPlatforms = p:
- lib.optional (system == "x86_64-linux") p.musl64 ++
180
- lib.optional
181
- (system == "x86_64-linux" && config.compiler-nix-name == "ghc967")
182
- p.aarch64-multiplatform-musl;
+ lib.optional (system == "x86_64-linux") p.musl64;
183
184
inputMap = {
185
"https://chap.intersectmbo.org/" = inputs.CHaP;
0 commit comments