-
Notifications
You must be signed in to change notification settings - Fork 2
/
flake.nix
228 lines (211 loc) · 8.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
description = "Espresso Decentralized Sequencer";
nixConfig = {
extra-substituters = [
"https://espresso-systems-private.cachix.org"
"https://nixpkgs-cross-overlay.cachix.org"
];
extra-trusted-public-keys = [
"espresso-systems-private.cachix.org-1:LHYk03zKQCeZ4dvg3NctyCq88e44oBZVug5LpYKjPRI="
"nixpkgs-cross-overlay.cachix.org-1:TjKExGN4ys960TlsGqNOI/NBdoz2Jdr2ow1VybWV5JM="
];
};
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.rust-overlay.url = "github:oxalica/rust-overlay";
inputs.fenix.url = "github:nix-community/fenix";
inputs.fenix.inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs-cross-overlay = {
url = "github:alekseysidorov/nixpkgs-cross-overlay";
inputs.flake-utils.follows = "flake-utils";
};
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.foundry.url = "github:shazow/foundry.nix/monthly"; # Use monthly branch for permanent releases
inputs.solc-bin.url = "github:EspressoSystems/nix-solc-bin";
inputs.flake-compat.url = "github:edolstra/flake-compat";
inputs.flake-compat.flake = false;
inputs.pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
outputs = { self, nixpkgs, rust-overlay, nixpkgs-cross-overlay, flake-utils, pre-commit-hooks, fenix, foundry, solc-bin, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
# node=error: disable noisy anvil output
RUST_LOG = "info,libp2p=off,isahc=error,surf=error,node=error";
RUST_BACKTRACE = 1;
RUSTFLAGS = " --cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\"";
solhintPkg = { buildNpmPackage, fetchFromGitHub }: buildNpmPackage rec {
pname = "solhint";
version = "3.4.1";
src = fetchFromGitHub {
owner = "protofire";
repo = pname;
rev = "v${version}";
hash = "sha256-cOZgphyNbTBWnnomOoQj9Ferss6/109EGkzVZY1eqrg=";
};
npmDepsHash = "sha256-s037N+fma4aLTrEhRb64UGr7uItP7v0s1gQ9X7fra00=";
dontNpmBuild = true;
};
overlays = [
(import rust-overlay)
foundry.overlay
solc-bin.overlays.default
(final: prev: {
solhint = solhintPkg { inherit (prev) buildNpmPackage fetchFromGitHub; };
})
];
pkgs = import nixpkgs {
inherit system overlays;
};
crossShell = { config }:
let
localSystem = system;
crossSystem = { inherit config; useLLVM = true; isStatic = true; };
pkgs = import "${nixpkgs-cross-overlay}/utils/nixpkgs.nix" {
inherit overlays localSystem crossSystem;
};
in
import ./cross-shell.nix {
inherit pkgs;
inherit RUST_LOG RUST_BACKTRACE RUSTFLAGS;
};
in
with pkgs;
{
checks = {
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
doc = {
enable = true;
description = "Generate figures";
entry = "make doc";
types_or = [ "plantuml" ];
pass_filenames = false;
};
cargo-fmt = {
enable = true;
description = "Enforce rustfmt";
entry = "cargo fmt --all";
types_or = [ "rust" "toml" ];
pass_filenames = false;
};
cargo-sort = {
enable = true;
description = "Ensure Cargo.toml are sorted";
entry = "cargo sort -g -w";
types_or = [ "toml" ];
pass_filenames = false;
};
cargo-clippy = {
enable = true;
description = "Run clippy";
entry = "cargo clippy --workspace --all-features --all-targets -- -D warnings";
types_or = [ "rust" "toml" ];
pass_filenames = false;
};
forge-fmt = {
enable = true;
description = "Enforce forge fmt";
entry = "forge fmt";
types_or = [ "solidity" ];
pass_filenames = false;
};
solhint = {
enable = true;
description = "Solidity linter";
entry = "solhint --fix 'contracts/{script,src,test}/**/*.sol'";
types_or = [ "solidity" ];
pass_filenames = true;
};
# MA: broken as of 2023-10-05. Cargo fmt makes changes to the generated
# bindings which then cause the consistency check of `forge bind` to fail
# because the files are no longer identical.
# contract-bindings = {
# enable = true;
# description = "Generate contract bindings";
# entry = "just bindings";
# types_or = [ "solidity" ];
# pass_filenames = false;
# };
prettier-fmt = {
enable = true;
description = "Enforce markdown formatting";
entry = "prettier -w";
types_or = [ "markdown" ];
pass_filenames = true;
};
};
};
};
devShells.default =
let
stableToolchain = pkgs.rust-bin.stable.latest.minimal.override {
extensions = [ "rustfmt" "clippy" "llvm-tools-preview" "rust-src" ];
};
# nixWithFlakes allows pre v2.4 nix installations to use
# flake commands (like `nix flake update`)
nixWithFlakes = pkgs.writeShellScriptBin "nix" ''
exec ${pkgs.nixFlakes}/bin/nix --experimental-features "nix-command flakes" "$@"
'';
solc = pkgs.solc-bin.latest;
in
mkShell
{
buildInputs = [
# Rust dependencies
pkg-config
openssl
curl
protobuf # to compile libp2p-autonat
stableToolchain
# Rust tools
cargo-audit
cargo-edit
cargo-watch
cargo-sort
just
fenix.packages.${system}.rust-analyzer
# Tools
nixWithFlakes
entr
# Figures
graphviz
plantuml
coreutils
# Ethereum contracts, solidity, ...
foundry-bin
solc
nodePackages.prettier
solhint
(python3.withPackages (ps: with ps; [ black ]))
] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
shellHook = ''
# Prevent cargo aliases from using programs in `~/.cargo` to avoid conflicts
# with rustup installations.
export CARGO_HOME=$HOME/.cargo-nix
'' + self.checks.${system}.pre-commit-check.shellHook;
RUST_SRC_PATH = "${stableToolchain}/lib/rustlib/src/rust/library";
FOUNDRY_SOLC = "${solc}/bin/solc";
inherit RUST_LOG RUST_BACKTRACE RUSTFLAGS;
};
devShells.crossShell = crossShell { config = "x86_64-unknown-linux-musl"; };
devShells.armCrossShell = crossShell { config = "aarch64-unknown-linux-musl"; };
devShells.rustShell =
let
stableToolchain = pkgs.rust-bin.stable.latest.minimal.override {
extensions = [ "rustfmt" "clippy" "llvm-tools-preview" "rust-src" ];
};
in
mkShell
{
buildInputs = [
# Rust dependencies
pkg-config
openssl
curl
protobuf # to compile libp2p-autonat
stableToolchain
];
inherit RUST_LOG RUST_BACKTRACE RUSTFLAGS;
};
}
);
}