-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
45 lines (43 loc) · 1.06 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
description = "A good flake for good frens";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
foundry = {
url = "github:shazow/foundry.nix/monthly";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
solc = {
url = "github:hellwolf/solc.nix";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, flake-utils, nixpkgs, foundry, solc }:
flake-utils.lib.eachDefaultSystem (system:
let
solcVer = "solc_0_8_23";
pkgs = import nixpkgs {
inherit system;
overlays = [
foundry.overlay
solc.overlay
];
};
in {
# local development shells
devShells.default = with pkgs; mkShell {
buildInputs = [
nodePackages_latest.pnpm
jq
yq
foundry-bin
# slither-analyzer
# echidna
pkgs.${solcVer}
(solc.mkDefault pkgs pkgs.${solcVer})
];
};
});
}