-
Notifications
You must be signed in to change notification settings - Fork 69
/
flake.nix
298 lines (283 loc) · 9.8 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
{
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.nixpkgs-cross-overlay.url =
"github:alekseysidorov/nixpkgs-cross-overlay";
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
, 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;
ASYNC_FLAGS = " --cfg async_executor_impl=\"async-std\" --cfg async_channel_impl=\"async-std\" ";
RUSTFLAGS = "${ASYNC_FLAGS} --cfg hotshot_example";
RUSTDOCFLAGS = ASYNC_FLAGS;
# Use a distinct target dir for builds from within nix shells.
CARGO_TARGET_DIR = "target/nix";
rustEnvVars = { inherit RUST_LOG RUST_BACKTRACE RUSTFLAGS RUSTDOCFLAGS CARGO_TARGET_DIR; };
solhintPkg = { buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "solhint";
version = "3.6.2";
src = fetchFromGitHub {
owner = "protofire";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-VI6J2iSgimcT9TWPlPD6aIDfRFmlQafCc/J4dwF9rMs=";
};
npmDepsHash = "sha256-lSe3Rt3I2yFy9Je3SLD2QJA/608ppvbLWmwDt6vkDIk=";
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;
envVars = rustEnvVars;
};
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 = "just clippy";
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;
};
contract-bindings = {
enable = true;
description = "Generate contract bindings";
entry = "just gen-bindings";
types_or = [ "solidity" ];
pass_filenames = false;
};
prettier-fmt = {
enable = true;
description = "Enforce markdown formatting";
entry = "prettier -w";
types_or = [ "markdown" "ts" ];
pass_filenames = true;
};
spell-checking = {
enable = true;
description = "Spell checking";
# --force-exclude to exclude excluded files if they are passed as arguments
entry = "typos --force-exclude";
pass_filenames = true;
# Add excludes to the .typos.toml file instead
};
nixpkgs-fmt.enable = true;
};
};
};
devShells.default =
let
stableToolchain = pkgs.rust-bin.stable.latest.minimal.override {
extensions = [ "rustfmt" "clippy" "llvm-tools-preview" "rust-src" ];
};
nightlyToolchain = pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.minimal.override {
extensions = [ "rust-analyzer" ];
});
# 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 (rustEnvVars // {
buildInputs = [
# Rust dependencies
pkg-config
openssl
curl
protobuf # to compile libp2p-autonat
stableToolchain
jq
# Rust tools
cargo-audit
cargo-edit
cargo-sort
cargo-nextest
typos
just
nightlyToolchain.passthru.availableComponents.rust-analyzer
# Tools
nixWithFlakes
nixpkgs-fmt
entr
process-compose
# `postgresql` defaults to an older version (15), so we select the latest version (16)
# explicitly.
postgresql_16
# Figures
graphviz
plantuml
coreutils
# Ethereum contracts, solidity, ...
foundry-bin
solc
nodePackages.prettier
solhint
(python3.withPackages (ps: with ps; [ black ]))
yarn
] ++ lib.optionals stdenv.isDarwin
[ darwin.apple_sdk.frameworks.SystemConfiguration ]
++ lib.optionals (!stdenv.isDarwin) [ cargo-watch ] # broken on OSX
;
shellHook = ''
# Add node binaries to PATH
export PATH="$PWD/node_modules/.bin:$PATH"
# Prevent cargo aliases from using programs in `~/.cargo` to avoid conflicts
# with rustup installations.
export CARGO_HOME=$HOME/.cargo-nix
export PATH="$PWD/$CARGO_TARGET_DIR/release:$PATH"
'' + self.checks.${system}.pre-commit-check.shellHook;
RUST_SRC_PATH = "${stableToolchain}/lib/rustlib/src/rust/library";
FOUNDRY_SOLC = "${solc}/bin/solc";
});
devShells.crossShell =
crossShell { config = "x86_64-unknown-linux-musl"; };
devShells.armCrossShell =
crossShell { config = "aarch64-unknown-linux-musl"; };
devShells.nightly =
let
toolchain = pkgs.rust-bin.nightly.latest.minimal.override {
extensions = [ "rustfmt" "clippy" "llvm-tools-preview" "rust-src" ];
};
in
mkShell (rustEnvVars // {
buildInputs = [
# Rust dependencies
pkg-config
openssl
curl
protobuf # to compile libp2p-autonat
toolchain
];
});
devShells.coverage =
let
toolchain = pkgs.rust-bin.nightly.latest.minimal;
in
mkShell (rustEnvVars // {
buildInputs = [
# Rust dependencies
pkg-config
openssl
curl
protobuf # to compile libp2p-autonat
toolchain
grcov
];
CARGO_INCREMENTAL = "0";
shellHook = ''
RUSTFLAGS="$RUSTFLAGS -Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests -Cdebuginfo=2"
'';
RUSTDOCFLAGS = "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests";
});
devShells.rustShell =
let
stableToolchain = pkgs.rust-bin.stable.latest.minimal.override {
extensions = [ "rustfmt" "clippy" "llvm-tools-preview" "rust-src" ];
};
in
mkShell (rustEnvVars // {
buildInputs = [
# Rust dependencies
pkg-config
openssl
curl
protobuf # to compile libp2p-autonat
stableToolchain
];
});
});
}