Skip to content

Commit

Permalink
flake: fix solc-static-versions output
Browse files Browse the repository at this point in the history
It needs to be a flat attrset.
  • Loading branch information
asymmetric committed Mar 3, 2023
1 parent 1fe5beb commit 062833c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@
in
{
packages =
forAllSystems (system: {
inherit (nixpkgsFor.${system}) dapp ethsign hevm seth;
forAllSystems (system:
let pkgs = nixpkgsFor.${system}; in
{
inherit (pkgs) dapp ethsign hevm seth;

solc-versions = pkgs.solc-static-versions;
});
} // pkgs.solc-static-versions);

apps =
forAllSystems (system:
Expand Down

0 comments on commit 062833c

Please sign in to comment.