Skip to content

Commit

Permalink
Update flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
hellwolf authored Apr 9, 2024
1 parent c3b03f0 commit 3f53e7d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,22 @@
++ whitehatInputs
++ specInputs;
};

# CI shells
ciInputs = with pkgs; [
# codecov requries gnupg binary
gnupg
];
devShells.ci-node18 = mkShell {
buildInputs = commonDevInputs ++ ethDevInputs ++ node18DevInputs;
buildInputs = ciInputs ++ commonDevInputs ++ ethDevInputs ++ node18DevInputs;
};
devShells.ci-node20 = mkShell {
buildInputs = commonDevInputs ++ ethDevInputs ++ node20DevInputs;
buildInputs = ciInputs ++ commonDevInputs ++ ethDevInputs ++ node20DevInputs;
};
devShells.ci-spec-ghc92 = ci-spec-with-ghc ghcVer92;
devShells.ci-spec-ghc94 = ci-spec-with-ghc ghcVer94;
devShells.ci-hot-fuzz = mkShell {
buildInputs = with pkgs; commonDevInputs ++ ethDevInputs ++ [
buildInputs = with pkgs; ciInputs ++ commonDevInputs ++ ethDevInputs ++ [
slither-analyzer
echidna
];
Expand Down

0 comments on commit 3f53e7d

Please sign in to comment.