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 6c72809 commit b54afcdCopy full SHA for b54afcd
flake.nix
@@ -28,7 +28,8 @@
28
# TODO: maybe only override it for echidna-redistributable?
29
pkgsStatic = if pkgs.stdenv.hostPlatform.isLinux then pkgs.pkgsStatic else pkgs;
30
# this is not perfect for development as it hardcodes solc to 0.5.7, test suite runs fine though
31
- solc = solc-pkgs.mkDefault pkgs pkgs.solc_0_5_7;
+ # 0.5.7 is not available on aarch64 darwin so alternatively pick 0.8.5
32
+ solc = solc-pkgs.mkDefault pkgs (pkgs.solc_0_5_7 or pkgs.solc_0_8_5);
33
34
secp256k1-static = pkgsStatic.secp256k1.overrideAttrs (attrs: {
35
configureFlags = attrs.configureFlags ++ [ "--enable-static" ];
0 commit comments