-
Notifications
You must be signed in to change notification settings - Fork 3
/
flake.nix
394 lines (361 loc) · 16.3 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
{
description =
"Mina, a cryptocurrency with a lightweight, constant-size blockchain";
nixConfig = {
allow-import-from-derivation = "true";
extra-substituters = [ "https://storage.googleapis.com/mina-nix-cache" ];
extra-trusted-public-keys = [
"nix-cache.minaprotocol.org:fdcuDzmnM0Kbf7yU4yywBuUEJWClySc1WIF6t6Mm8h4="
"nix-cache.minaprotocol.org:D3B1W+V7ND1Fmfii8EhbAbF1JXoe2Ct4N34OKChwk2c="
"mina-nix-cache-1:djtioLfv2oxuK2lqPUgmZbf8bY8sK/BnYZCU2iU5Q10="
];
};
inputs.dream2nix.url = "github:nix-community/dream2nix";
inputs.dream2nix.inputs.nixpkgs.follows = "nixpkgs";
inputs.utils.url = "github:gytis-ivaskevicius/flake-utils-plus";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11-small";
inputs.mix-to-nix.url = "github:serokell/mix-to-nix";
inputs.nix-npm-buildPackage.url = "github:serokell/nix-npm-buildpackage";
inputs.nix-npm-buildPackage.inputs.nixpkgs.follows = "nixpkgs";
inputs.opam-nix.url = "github:tweag/opam-nix";
inputs.opam-nix.inputs.nixpkgs.follows = "nixpkgs";
inputs.opam-nix.inputs.opam-repository.follows = "opam-repository";
inputs.opam-repository.url = "github:ocaml/opam-repository";
inputs.opam-repository.flake = false;
inputs.nixpkgs-mozilla.url = "github:mozilla/nixpkgs-mozilla";
inputs.nixpkgs-mozilla.flake = false;
# For nix/compat.nix
inputs.flake-compat.url = "github:edolstra/flake-compat";
inputs.flake-compat.flake = false;
inputs.gitignore-nix.url = "github:hercules-ci/gitignore.nix";
inputs.gitignore-nix.inputs.nixpkgs.follows = "nixpkgs";
inputs.nix-filter.url = "github:numtide/nix-filter";
inputs.flake-buildkite-pipeline.url = "github:tweag/flake-buildkite-pipeline";
inputs.nix-utils.url = "github:juliosueiras-nix/nix-utils";
inputs.flockenzeit.url = "github:balsoft/Flockenzeit";
outputs = inputs@{ self, nixpkgs, utils, mix-to-nix, nix-npm-buildPackage
, opam-nix, opam-repository, nixpkgs-mozilla, flake-buildkite-pipeline
, nix-utils, flockenzeit, ... }:
let
inherit (nixpkgs) lib;
# All the submodules required by .gitmodules
submodules = map builtins.head (builtins.filter lib.isList
(map (builtins.match " path = (.*)")
(lib.splitString "\n" (builtins.readFile ./.gitmodules))));
# Warn about missing submodules
requireSubmodules = let
ref = r: "[34;1m${r}[31;1m";
command = c: "[37;1m${c}[31;1m";
in lib.warnIf (!builtins.all (x: x)
(map (x: builtins.pathExists ./${x} && builtins.readDir ./${x} != { }) submodules)) ''
Some submodules are missing, you may get errors. Consider one of the following:
- run ${command "nix/pin.sh"} and use "${ref "mina"}" flake ref, e.g. ${command "nix develop mina"} or ${command "nix build mina"};
- use "${ref "git+file://$PWD?submodules=1"}";
- use "${ref "git+https://github.com/minaprotocol/mina?submodules=1"}";
- use non-flake commands like ${command "nix-build"} and ${command "nix-shell"}.
'';
# Only get the ocaml stuff, to reduce the amount of unnecessary rebuilds
ocaml-src =
with inputs.nix-filter.lib;
filter {
root = ./.;
include =
[ (inDirectory "src") "dune" "dune-project"
"./graphql_schema.json" "opam.export" ];
};
in {
overlays = {
misc = import ./nix/misc.nix;
rust = import ./nix/rust.nix;
go = import ./nix/go.nix;
javascript = import ./nix/javascript.nix;
ocaml = pkgs: prev: {
ocamlPackages_mina = requireSubmodules (import ./nix/ocaml.nix {
inherit inputs pkgs;
src = ocaml-src;
});
};
};
nixosModules.mina = import ./nix/modules/mina.nix inputs;
# Mina Demo container
# Use `nixos-container create --flake mina`
# Taken from docs/demo.md
nixosConfigurations.container = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = let
PK = "B62qiZfzW27eavtPrnF6DeDSAKEjXuGFdkouC3T5STRa6rrYLiDUP2p";
wallet = {
box_primitive = "xsalsa20poly1305";
ciphertext =
"Dmq1Qd8uNbZRT1NT7zVbn3eubpn9Myx9Je9ZQGTKDxUv4BoPNmZAGox18qVfbbEUSuhT4ZGDt";
nonce = "6pcvpWSLkMi393dT5VSLR6ft56AWKkCYRqJoYia";
pw_primitive = "argon2i";
pwdiff = [ 134217728 6 ];
pwsalt = "ASoBkV3NsY7ZRuxztyPJdmJCiz3R";
};
wallet-file = builtins.toFile "mina-wallet" (builtins.toJSON wallet);
wallet-file-pub = builtins.toFile "mina-wallet-pub" PK;
in [
self.nixosModules.mina
{
boot.isContainer = true;
networking.useDHCP = false;
networking.firewall.enable = false;
services.mina = {
enable = true;
config = {
"ledger" = {
"name" = "mina-demo";
"accounts" = [{
"pk" = PK;
"balance" = "66000";
"sk" = null;
"delegate" = null;
}];
};
};
waitForRpc = false;
external-ip = "0.0.0.0";
generate-genesis-proof = true;
seed = true;
block-producer-key = "/var/lib/mina/wallets/store/${PK}";
extraArgs = [
"--demo-mode"
"--proof-level"
"none"
"--run-snark-worker"
"B62qjnkjj3zDxhEfxbn1qZhUawVeLsUr2GCzEz8m1MDztiBouNsiMUL"
"-insecure-rest-server"
];
};
systemd.services.mina = {
preStart = ''
printf '{"genesis":{"genesis_state_timestamp":"%s"}}' "$(date -u +"%Y-%m-%dT%H:%M:%SZ")" > /var/lib/mina/daemon.json
'';
environment = {
MINA_TIME_OFFSET = "0";
MINA_PRIVKEY_PASS = "";
};
};
systemd.tmpfiles.rules = [
"C /var/lib/mina/wallets/store/${PK}.pub 700 mina mina - ${wallet-file-pub}"
"C /var/lib/mina/wallets/store/${PK} 700 mina mina - ${wallet-file}"
];
}
];
};
# Buildkite pipeline for the Nix CI
pipeline = with flake-buildkite-pipeline.lib;
let
inherit (nixpkgs) lib;
dockerUrl = package: tag:
"us-west2-docker.pkg.dev/o1labs-192920/nix-containers/${package}:${tag}";
pushToRegistry = package: {
command = runInEnv self.devShells.x86_64-linux.operations ''
${self.packages.x86_64-linux.${package}} | gzip --fast | \
skopeo \
copy \
--insecure-policy \
--dest-registry-token $(gcloud auth application-default print-access-token) \
docker-archive:/dev/stdin \
docker://${dockerUrl package "$BUILDKITE_COMMIT"}
if [[ develop == "$BUILDKITE_BRANCH" ]]; then
skopeo \
copy \
--insecure-policy \
--dest-registry-token $(gcloud auth application-default print-access-token) \
docker://${dockerUrl package "$BUILDKITE_COMMIT"} \
docker://${dockerUrl package "$BUILDKITE_BRANCH"}
fi
'';
label =
"Assemble and upload ${package} to Google Artifact Registry";
depends_on = [ "packages_x86_64-linux_${package}" ];
plugins = [{ "thedyrt/skip-checkout#v0.1.1" = null; }];
key = "push_${package}";
};
# Publish the documentation generated by ocamldoc to s3
publishDocs = {
command = runInEnv self.devShells.x86_64-linux.operations ''
gcloud auth activate-service-account --key-file "$GOOGLE_APPLICATION_CREDENTIALS"
gsutil -m rsync -rd ${self.packages.x86_64-linux.default}/share/doc/html gs://mina-docs
'';
label = "Publish documentation to Google Storage";
depends_on = [ "packages_x86_64-linux_default" ];
branches = [ "develop" ];
plugins = [{ "thedyrt/skip-checkout#v0.1.1" = null; }];
};
runIntegrationTest = test:
{ with-archive ? false }: {
command =
runInEnv self.devShells.x86_64-linux.integration-tests ''
export GOOGLE_CLOUD_KEYFILE_JSON=$AUTOMATED_VALIDATION_SERVICE_ACCOUNT
export GCLOUD_API_KEY=$(cat $INTEGRATION_TEST_LOGS_GCLOUD_API_KEY_PATH)
source $INTEGRATION_TEST_CREDENTIALS
export AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY
export KUBE_CONFIG_PATH=$$HOME/.kube/config
gcloud auth activate-service-account --key-file=$AUTOMATED_VALIDATION_SERVICE_ACCOUNT automated-validation@o1labs-192920.iam.gserviceaccount.com --project o1labs-192920
gcloud container clusters get-credentials --region us-west1 mina-integration-west1
kubectl config use-context gke_o1labs-192920_us-west1_mina-integration-west1
test_executive cloud ${test} \
--mina-image=${
dockerUrl "mina-image-full" "$BUILDKITE_COMMIT"
} \
${lib.optionalString with-archive "--archive-image=${
dockerUrl "mina-archive-image-full" "$BUILDKITE_COMMIT"
}"}
'';
label = "Run ${test} integration test";
depends_on = [ "push_mina-image-full" ]
++ lib.optional with-archive "push_mina-archive-image-full";
"if" = ''build.pull_request.labels includes "nix-integration-tests"'';
retry = {
automatic = [
{
exit_status = "*";
limit = 3;
}
];
};
};
in {
steps = flakeSteps {
derivationCache = "https://storage.googleapis.com/mina-nix-cache";
reproduceRepo = "mina";
commonExtraStepConfig = {
agents = [ "nix" ];
plugins = [{ "thedyrt/skip-checkout#v0.1.1" = null; }];
};
} self ++ [
(pushToRegistry "mina-image-slim")
(pushToRegistry "mina-image-full")
(pushToRegistry "mina-archive-image-full")
publishDocs
(runIntegrationTest "peers-reliability" { })
(runIntegrationTest "chain-reliability" { })
(runIntegrationTest "payment" { with-archive = true; })
(runIntegrationTest "delegation" { with-archive = true; })
(runIntegrationTest "gossip-consis" { })
# FIXME: opt-block-prod test fails.
# This has been disabled in the "old" CI for a while.
# (runIntegrationTest "opt-block-prod" { })
(runIntegrationTest "medium-bootstrap" { })
(runIntegrationTest "zkapps" { with-archive = true; })
(runIntegrationTest "zkapps-timing" { with-archive = true; })
];
};
} // utils.lib.eachDefaultSystem (system:
let
rocksdbOverlay = pkgs: prev:
if prev.stdenv.isDarwin then
{ rocksdb-mina = pkgs.rocksdb; }
else { rocksdb-mina = pkgs.rocksdb511; };
# nixpkgs with all relevant overlays applied
pkgs = nixpkgs.legacyPackages.${system}.extend
(nixpkgs.lib.composeManyExtensions ([
(import nixpkgs-mozilla)
nix-npm-buildPackage.overlays.default
(final: prev: {
rpmDebUtils = final.callPackage "${nix-utils}/utils/rpm-deb" { };
mix-to-nix = pkgs.callPackage inputs.mix-to-nix { };
nix-npm-buildPackage =
pkgs.callPackage inputs.nix-npm-buildPackage {
nodejs = pkgs.nodejs-16_x;
};
})
] ++ builtins.attrValues self.overlays ++ [ rocksdbOverlay ] ));
checks = import ./nix/checks.nix inputs pkgs;
dockerImages = pkgs.callPackage ./nix/docker.nix {
inherit flockenzeit;
currentTime = self.sourceInfo.lastModified or 0;
};
ocamlPackages = pkgs.ocamlPackages_mina;
# Nix-built `dpkg` archives with Mina in them
debianPackages = pkgs.callPackage ./nix/debian.nix { };
# Packages for the development environment that are not needed to build mina-dev.
# For instance dependencies for tests.
devShellPackages = with pkgs; [ rosetta-cli wasm-pack nodejs binaryen ];
in {
inherit ocamlPackages;
# Main user-facing binaries.
packages = rec {
inherit (ocamlPackages)
mina devnet mainnet mina_tests mina-ocaml-format mina_client_sdk test_executive with-instrumentation;
inherit (pkgs)
libp2p_helper kimchi_bindings_stubs snarky_js leaderboard
validation trace-tool zkapp-cli;
inherit (dockerImages)
mina-image-slim mina-image-full mina-archive-image-full mina-image-instr-full;
mina-deb = debianPackages.mina;
default = mina;
};
# Pure dev shell, from which you can build Mina yourself manually, or hack on it.
devShell = ocamlPackages.mina-dev.overrideAttrs (oa: {
buildInputs = oa.buildInputs ++ devShellPackages;
shellHook = ''
${oa.shellHook}
unset MINA_COMMIT_DATE MINA_COMMIT_SHA1 MINA_BRANCH
'';
});
devShells.default = self.devShell.${system};
# Shell with an LSP server available in it. You can start your editor from this shell, and tell it to look for LSP in PATH.
devShells.with-lsp = ocamlPackages.mina-dev.overrideAttrs (oa: {
name = "mina-with-lsp";
buildInputs = oa.buildInputs ++ devShellPackages;
nativeBuildInputs = oa.nativeBuildInputs
++ [ ocamlPackages.ocaml-lsp-server ];
shellHook = ''
${oa.shellHook}
unset MINA_COMMIT_DATE MINA_COMMIT_SHA1 MINA_BRANCH
# TODO: dead code doesn't allow us to have nice things
'';
});
devShells.operations = pkgs.mkShell {
name = "mina-operations";
packages = with pkgs; [ skopeo gzip google-cloud-sdk ];
};
# TODO: think about rust toolchain in the dev shell
devShells.integration-tests = pkgs.mkShell {
name = "mina-integration-tests";
shellHook = ''
export MINA_BRANCH=$()
'';
buildInputs = [
self.packages.${system}.test_executive
pkgs.kubectl
pkgs.google-cloud-sdk
pkgs.terraform
pkgs.curl
];
};
packages.impure-shell =
(import ./nix/impure-shell.nix pkgs).inputDerivation;
# An "impure" shell, giving you the system deps of Mina, opam, cargo and go.
devShells.impure = import ./nix/impure-shell.nix pkgs;
# A shell from which it's possible to build Mina with Rust bits being built incrementally using cargo.
# This is "impure" from the nix' perspective since running `cargo build` requires networking in general.
# However, this is a useful balance between purity and convenience for Rust development.
devShells.rust-impure = ocamlPackages.mina-dev.overrideAttrs (oa: {
name = "mina-rust-shell";
buildInputs = oa.buildInputs ++ devShellPackages;
nativeBuildInputs = oa.nativeBuildInputs ++ [
pkgs.rustup
pkgs.libiconv # needed on macOS for one of the rust dep
];
});
# A shell from which we can compile snarky_js and use zkapp-cli to write and deploy zkapps
devShells.zkapp-impure = ocamlPackages.mina-dev.overrideAttrs (oa: {
name = "mina-zkapp-shell";
buildInputs = oa.buildInputs ++ devShellPackages;
nativeBuildInputs = oa.nativeBuildInputs ++ [
pkgs.rustup
pkgs.libiconv # needed on macOS for one of the rust dep
pkgs.git
pkgs.nodejs
pkgs.zkapp-cli
pkgs.binaryen # provides wasm-opt
];
});
inherit checks;
});
}