forked from fedimint/fedimint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
811 lines (714 loc) · 31 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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.05";
crane.url = "github:ipetkov/crane?rev=755acd231a7de182fdc772bee1b2a1f21d4ec9ed"; # https://github.com/ipetkov/crane/releases/tag/v0.7.0
crane.inputs.nixpkgs.follows = "nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
advisory-db = {
url = "github:rustsec/advisory-db";
flake = false;
};
};
outputs = { self, nixpkgs, flake-utils, flake-compat, fenix, crane, advisory-db }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
lib = pkgs.lib;
stdenv = pkgs.stdenv;
clightning-dev = pkgs.clightning.overrideAttrs (oldAttrs: {
configureFlags = [ "--enable-developer" "--disable-valgrind" ];
} // pkgs.lib.optionalAttrs (!pkgs.stdenv.isDarwin) {
NIX_CFLAGS_COMPILE = "-Wno-stringop-truncation";
});
isArch64Darwin = stdenv.isAarch64 || stdenv.isDarwin;
# Env vars we need for wasm32 cross compilation
wasm32CrossEnvVars = ''
export CC_wasm32_unknown_unknown="${pkgs.llvmPackages_14.clang-unwrapped}/bin/clang-14"
export CFLAGS_wasm32_unknown_unknown="-I ${pkgs.llvmPackages_14.libclang.lib}/lib/clang/14.0.1/include/"
'' + (if isArch64Darwin then
''
export AR_wasm32_unknown_unknown="${pkgs.llvmPackages_14.llvm}/bin/llvm-ar"
'' else
''
'');
# All the environment variables we need for all android cross compilation targets
androidCrossEnvVars = ''
# Note: rockdb seems to require uint128_t, which is not supported on 32-bit Android: https://stackoverflow.com/a/25819240/134409 (?)
export LLVM_CONFIG_PATH="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-config"
export CC_armv7_linux_androideabi="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang"
export CXX_armv7_linux_androideabi="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++"
export LD_armv7_linux_androideabi="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/arm-linux-androideabi/bin/ld"
export LDFLAGS_armv7_linux_androideabi="-L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/30/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/arm-linux-androideabi/"
export CC_aarch64_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang"
export CXX_aarch64_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++"
export LD_aarch64_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/aarch64-linux-android/bin/ld"
export LDFLAGS_aarch64_linux_android="-L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/30/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/lib/gcc/aarch64-linux-android/4.9.x/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/aarch64-linux-android/"
export CC_x86_64_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang"
export CXX_x86_64_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++"
export LD_x86_64_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/aarch64-linux-android/bin/ld"
export LDFLAGS_x86_64_linux_android="-L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/30/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/lib/gcc/x86_64-linux-android/4.9.x/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/x86_64-linux-android/"
export CC_i686_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang"
export CXX_i686_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++"
export LD_i686_linux_android="${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/aarch64-linux-android/bin/ld"
export LDFLAGS_i686_linux_android="-L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/30/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/lib/gcc/i686-linux-android/4.9.x/ -L ${androidComposition.ndk-bundle}/libexec/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/lib/i686-linux-android/"
'';
# NDK we use for android cross compilation
androidComposition = pkgs.androidenv.composeAndroidPackages {
includeNDK = true;
};
# Definitions of all the cross-compilation targets we support.
# Later mapped over to conveniently loop over all posibilities.
crossTargets =
builtins.mapAttrs
(attr: target: { attr = attr; extraEnvs = ""; } // target)
{
"wasm32" = {
name = "wasm32-unknown-unknown";
extraEnvs = wasm32CrossEnvVars;
};
"armv7-android" = {
name = "armv7-linux-androideabi";
extraEnvs = androidCrossEnvVars;
};
"aarch64-android" = {
name = "aarch64-linux-android";
extraEnvs = androidCrossEnvVars;
};
"i686-android" = {
name = "i686-linux-android";
extraEnvs = androidCrossEnvVars;
};
"x86_64-android" = {
name = "x86_64-linux-android";
extraEnvs = androidCrossEnvVars;
};
};
fenixChannel = fenix.packages.${system}.stable;
fenixChannelNightly = fenix.packages.${system}.latest;
fenixToolchain = (fenixChannel.withComponents [
"rustc"
"cargo"
"clippy"
"rust-analysis"
"rust-src"
"llvm-tools-preview"
]);
fenixToolchainRustfmt = (fenixChannelNightly.withComponents [
"rustfmt"
]);
fenixToolchainCargoFmt = (fenixChannelNightly.withComponents [
"cargo"
"rustfmt"
]);
fenixToolchainCrossAll = with fenix.packages.${system}; combine ([
stable.cargo
stable.rustc
] ++ (lib.attrsets.mapAttrsToList
(attr: target: targets.${target.name}.stable.rust-std)
crossTargets));
fenixToolchainCross = builtins.mapAttrs
(attr: target: with fenix.packages.${system}; combine [
stable.cargo
stable.rustc
targets.${target.name}.stable.rust-std
])
crossTargets
;
craneLib = crane.lib.${system}.overrideToolchain fenixToolchain;
craneLibCross = builtins.mapAttrs
(attr: target: crane.lib.${system}.overrideToolchain fenixToolchainCross.${attr})
crossTargets
;
cargo-llvm-cov = craneLib.buildPackage rec {
pname = "cargo-llvm-cov";
version = "0.4.14";
buildInputs = commonArgs.buildInputs;
src = pkgs.fetchCrate {
inherit pname version;
sha256 = "sha256-DY5eBSx/PSmKaG7I6scDEbyZQ5hknA/pfl0KjTNqZlo=";
};
doCheck = false;
};
# some extra utilities that cli-tests require
cliTestsDeps = with pkgs; [
bc
bitcoind
clightning-dev
jq
netcat
perl
procps
bash
which
];
# filter source code at path `src` to include only the list of `modules`
filterModules = modules: src:
let
basePath = toString src + "/";
relPathAllCargoTomlFiles = builtins.filter
(pathStr: lib.strings.hasSuffix "/Cargo.toml" pathStr)
(builtins.map (path: lib.removePrefix basePath (toString path)) (lib.filesystem.listFilesRecursive src));
in
lib.cleanSourceWith {
filter = (path: type:
let
relPath = lib.removePrefix basePath (toString path);
includePath =
# traverse only into directories that somewhere in there contain `Cargo.toml` file, or were explicitily whitelisted
(type == "directory" && lib.any (cargoTomlPath: lib.strings.hasPrefix relPath cargoTomlPath) relPathAllCargoTomlFiles) ||
lib.any
(re: builtins.match re relPath != null)
([ "Cargo.lock" "Cargo.toml" ".cargo" ".cargo/.*" ".*/Cargo.toml" ] ++ builtins.concatLists (map (name: [ name "${name}/.*" ]) modules));
in
# uncomment to debug:
# builtins.trace "${relPath}: ${lib.boolToString includePath}"
includePath
);
inherit src;
};
# Filter only files needed to build project dependencies
#
# To get good build times it's vitally important to not have to
# rebuild derivation needlessly. The way Nix caches things
# is very simple: if any input file changed, derivation needs to
# be rebuild.
#
# For this reason this filter function strips the `src` from
# any files that are not relevant to the build.
#
# Lile `filterWorkspaceFiles` but doesn't even need *.rs files
# (because they are not used for building dependencies)
filterWorkspaceDepsBuildFiles = src: filterSrcWithRegexes [ "Cargo.lock" "Cargo.toml" ".cargo" ".cargo/.*" ".*/Cargo.toml" ] src;
# Filter only files relevant to building the workspace
filterWorkspaceFiles = src: filterSrcWithRegexes [ "Cargo.lock" "Cargo.toml" ".cargo" ".cargo/.*" ".*/Cargo.toml" ".*\.rs" ".*\.html" ] src;
# Like `filterWorkspaceFiles` but with `./scripts/` included
filterWorkspaceCliTestFiles = src: filterSrcWithRegexes [ "Cargo.lock" "Cargo.toml" ".cargo" ".cargo/.*" ".*/Cargo.toml" ".*\.rs" ".*\.html" "scripts/.*" ] src;
filterSrcWithRegexes = regexes: src:
let
basePath = toString src + "/";
in
lib.cleanSourceWith {
filter = (path: type:
let
relPath = lib.removePrefix basePath (toString path);
includePath =
(type == "directory") ||
lib.any
(re: builtins.match re relPath != null)
regexes;
in
# uncomment to debug:
# builtins.trace "${relPath}: ${lib.boolToString includePath}"
includePath
);
inherit src;
};
commonArgs = {
src = filterWorkspaceFiles ./.;
buildInputs = with pkgs; [
clang
gcc
openssl
pkg-config
perl
] ++ lib.optionals stdenv.isDarwin [
libiconv
darwin.apple_sdk.frameworks.Security
] ++ lib.optionals (!(stdenv.isAarch64 || stdenv.isDarwin)) [
# mold is currently broken on ARM and MacOS
mold
];
nativeBuildInputs = with pkgs; [
pkg-config
];
# copy over the linker/ar wrapper scripts which by default would get
# stripped by crane
dummySrc = craneLib.mkDummySrc {
src = ./.;
extraDummyScript = ''
cp -r ${./.cargo} -T $out/.cargo
'';
};
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib/";
CI = "true";
HOME = "/tmp";
};
commonCliTestArgs = commonArgs // {
src = filterWorkspaceCliTestFiles ./.;
nativeBuildInputs = commonArgs.nativeBuildInputs ++ cliTestsDeps;
# there's no point saving the `./target/` dir
doInstallCargoArtifacts = false;
# the command is a test, no need to run any other tests
doCheck = false;
};
workspaceDeps = craneLib.buildDepsOnly (commonArgs // {
src = filterWorkspaceDepsBuildFiles ./.;
pname = "workspace-deps";
buildPhaseCargoCommand = "cargo doc && cargo check --profile release --all-targets && cargo build --profile release --all-targets";
doCheck = false;
});
workspaceBuild = craneLib.cargoBuild (commonArgs // {
pname = "workspace-build";
cargoArtifacts = workspaceDeps;
doCheck = false;
});
workspaceTest = craneLib.cargoBuild (commonArgs // {
pname = "workspace-test";
cargoBuildCommand = "true";
cargoArtifacts = workspaceDeps;
doCheck = true;
});
workspaceClippy = craneLib.cargoClippy (commonArgs // {
pname = "workspace-clippy";
cargoArtifacts = workspaceDeps;
cargoClippyExtraArgs = "--all-targets --no-deps -- --deny warnings";
doInstallCargoArtifacts = false;
doCheck = false;
});
workspaceDoc = craneLib.cargoDoc (commonArgs // {
pname = "workspace-doc";
cargoArtifacts = workspaceDeps;
preConfigure = ''
export RUSTDOCFLAGS='-D rustdoc::broken_intra_doc_links'
'';
cargoDocExtraArgs = "--no-deps --document-private-items";
doInstallCargoArtifacts = false;
postInstall = ''
cp -a target/doc $out
'';
doCheck = false;
});
workspaceAudit = craneLib.cargoAudit (commonArgs // {
pname = "workspace-clippy";
inherit advisory-db;
});
# Build only deps, but with llvm-cov so `workspaceCov` can reuse them cached
workspaceDepsCov = craneLib.buildDepsOnly (commonArgs // {
pname = "workspace-deps-llvm-cov";
src = filterWorkspaceDepsBuildFiles ./.;
cargoBuildCommand = "cargo llvm-cov --workspace";
nativeBuildInputs = commonArgs.nativeBuildInputs ++ [ cargo-llvm-cov ];
doCheck = false;
});
workspaceCov = craneLib.cargoBuild (commonArgs // {
pname = "workspace-llvm-cov";
cargoArtifacts = workspaceDepsCov;
# TODO: as things are right now, the integration tests can't run in parallel
cargoBuildCommand = "mkdir -p $out && env RUST_TEST_THREADS=1 cargo llvm-cov --workspace --lcov --output-path $out/lcov.info";
doCheck = false;
nativeBuildInputs = commonArgs.nativeBuildInputs ++ [ cargo-llvm-cov ];
});
cliTestReconnect = craneLib.cargoBuild (commonCliTestArgs // {
cargoArtifacts = workspaceBuild;
cargoBuildCommand = "patchShebangs ./scripts && ./scripts/reconnect-test.sh";
});
cliTestLatency = craneLib.cargoBuild (commonCliTestArgs // {
cargoArtifacts = workspaceBuild;
cargoBuildCommand = "patchShebangs ./scripts && ./scripts/latency-test.sh";
doInstallCargoArtifacts = false;
});
cliTestCli = craneLib.cargoBuild (commonCliTestArgs // {
cargoArtifacts = workspaceBuild;
cargoBuildCommand = "patchShebangs ./scripts && ./scripts/cli-test.sh";
});
cliTestClientd = craneLib.cargoBuild (commonCliTestArgs // {
cargoArtifacts = workspaceBuild;
cargoBuildCommand = "patchShebangs ./scripts && ./scripts/clientd-tests.sh";
});
cliRustTests = craneLib.cargoBuild (commonCliTestArgs // {
cargoArtifacts = workspaceBuild;
cargoBuildCommand = "patchShebangs ./scripts && ./scripts/rust-tests.sh";
});
pkg = { name, dirs, bin ? null }:
let
deps = craneLib.buildDepsOnly (commonArgs // {
src = filterWorkspaceDepsBuildFiles ./.;
pname = "pkg-${name}-deps";
buildPhaseCargoCommand = "cargo build --profile release --package ${name}";
doCheck = false;
});
in
craneLib.buildPackage (commonArgs // {
meta = { mainProgram = bin; };
pname = "pkg-${name}";
cargoArtifacts = workspaceDeps;
src = filterModules dirs ./.;
cargoExtraArgs = "--package ${name}";
# if needed we will check the whole workspace at once with `workspaceBuild`
doCheck = false;
});
pkgCross = { name, dirs, target }:
let
craneLib = craneLibCross.${target.attr};
deps = craneLib.buildDepsOnly (commonArgs // {
src = filterWorkspaceDepsBuildFiles ./.;
pname = "pkg-${name}-${target.attr}-deps";
buildPhaseCargoCommand = "cargo build --profile release --target ${target.name} --package ${name}";
doCheck = false;
preBuild = ''
chmod +x .cargo/ar.*
chmod +x .cargo/ld.*
patchShebangs .cargo/
'' + target.extraEnvs;
});
in
craneLib.buildPackage (commonArgs // {
pname = "pkg-${name}-${target.attr}";
cargoArtifacts = deps;
src = filterModules dirs ./.;
cargoExtraArgs = "--package ${name} --target ${target.name}";
# if needed we will check the whole workspace at once with `workspaceBuild`
doCheck = false;
preBuild = ''
chmod +x .cargo/ar.*
chmod +x .cargo/ld.*
patchShebangs .cargo/
'' + target.extraEnvs;
});
fedimintd = pkg {
name = "fedimintd";
bin = "fedimintd";
dirs = [
"core"
"crypto/tbs"
"ln-gateway"
"client/client-lib"
"crypto/tbs"
"fedimintd"
"fedimint-api"
"fedimint-build"
"fedimint-core"
"fedimint-derive"
"fedimint-rocksdb"
"fedimint-server"
"ln-gateway"
"modules/fedimint-ln"
"modules/fedimint-mint"
"modules/fedimint-wallet"
# remove this dependency after modularization is complete and circular dependencies are resolved
"modules/mint-client"
"modules/mint-common"
"modules/mint-server"
];
};
ln-gateway = pkg {
name = "ln-gateway";
bin = "ln-gateway";
dirs = [
"core"
"crypto/tbs"
"client/client-lib"
"modules/fedimint-ln"
"fedimint-api"
"fedimint-core"
"fedimint-derive"
"fedimint-rocksdb"
"fedimint-server"
"fedimint-build"
"ln-gateway"
"modules/fedimint-mint"
"modules/fedimint-wallet"
"modules/mint-client"
"modules/mint-common"
"modules/mint-server"
];
};
fedimint-cli = pkg {
name = "fedimint-cli";
bin = "fedimint-cli";
dirs = [
"core"
"client/clientd"
"client/client-lib"
"client/cli"
"crypto/tbs"
"fedimint-api"
"fedimint-core"
"fedimint-derive"
"fedimint-rocksdb"
"fedimint-build"
"modules/fedimint-ln"
"modules/fedimint-mint"
"modules/fedimint-wallet"
"modules/mint-client"
"modules/mint-common"
];
};
mint-client = { target }: pkgCross {
name = "mint-client";
inherit target;
dirs = [
"core"
"client/client-lib"
"crypto/tbs"
"fedimint-api"
"fedimint-core"
"fedimint-derive"
"fedimint-rocksdb"
"modules/fedimint-ln"
"modules/fedimint-mint"
"modules/fedimint-wallet"
"modules/mint-client"
"modules/mint-common"
];
};
clientd = pkg {
name = "clientd";
bin = "clientd";
dirs = [
"core"
"client/cli"
"client/client-lib"
"client/clientd"
"crypto/tbs"
"fedimint-api"
"fedimint-core"
"fedimint-derive"
"fedimint-rocksdb"
"fedimint-build"
"modules/fedimint-ln"
"modules/fedimint-mint"
"modules/fedimint-wallet"
];
};
fedimint-tests = pkg {
name = "fedimint-tests";
dirs = [
"core"
"client/cli"
"client/client-lib"
"client/clientd"
"crypto/tbs"
"ln-gateway"
"fedimint-api"
"fedimint-core"
"fedimint-derive"
"fedimint-server"
"integrationtests"
"modules/fedimint-ln"
"modules/fedimint-mint"
"modules/fedimint-wallet"
];
};
# Replace placeholder git hash in a binary
#
# To avoid impurity, we use a git hash placeholder when building binaries
# and then replace them with the real git hash in the binaries themselves.
replace-git-hash = { package, name }:
let
# the git hash placeholder we use in `build.rs` scripts when
# building in Nix (to preserve purity)
hash-placeholder = "01234569afbe457afa1d2683a099c7af48a523c1";
# the hash we will set if the tree is dirty;
dirty-hash = "0000000000000000000000000000000000000000";
# git hash to set (passed by Nix if the tree is clean, or `dirty-hash` when dirty)
git-hash = if (self ? rev) then self.rev else dirty-hash;
in
stdenv.mkDerivation {
inherit system;
inherit name;
dontUnpack = true;
installPhase = ''
cp -a ${package} $out
for path in `find $out -type f -executable`; do
# need to use a temporary file not to overwrite source as we are reading it
bbe -e 's/${hash-placeholder}/${git-hash}/' $path -o ./tmp || exit 1
chmod +w $path
# use cat to keep all the original permissions etc as they were
cat ./tmp > "$path"
chmod -w $path
done
'';
buildInputs = [ pkgs.bbe ];
};
in
{
packages = {
default = fedimintd;
fedimintd = replace-git-hash { name = "fedimint"; package = fedimintd; };
fedimint-tests = fedimint-tests;
ln-gateway = replace-git-hash { name = "ln-gateway"; package = ln-gateway; };
clientd = replace-git-hash { name = "clientd"; package = clientd; };
fedimint-cli = replace-git-hash { name = "fedimint-cli"; package = fedimint-cli; };
inherit workspaceDeps
workspaceBuild
workspaceClippy
workspaceTest
workspaceDoc
workspaceCov
workspaceAudit;
};
# Technically nested sets are not allowed in `packages`, so we can
# dump the nested things here. They'll work the same way for most
# purposes (like `nix build`).
legacyPackages = {
cli-test = {
reconnect = cliTestReconnect;
latency = cliTestLatency;
cli = cliTestCli;
clientd = cliTestClientd;
rust-tests = cliRustTests;
};
cross = builtins.mapAttrs
(attr: target: {
mint-client = mint-client { inherit target; };
})
crossTargets;
container = {
fedimintd = pkgs.dockerTools.buildLayeredImage {
name = "fedimintd";
contents = [ fedimintd pkgs.bash pkgs.coreutils ];
config = {
Cmd = [
"${fedimintd}/bin/fedimintd"
];
ExposedPorts = {
"${builtins.toString 17240}/tcp" = { };
"${builtins.toString 17340}/tcp" = { };
"${builtins.toString 17440}/tcp" = { };
};
};
};
ln-gateway-clightning =
let
# Will be placed in `/config-example.cfg` by `fakeRootCommands` below
config-example = pkgs.writeText "config-example.conf" ''
network=signet
# bitcoin-datadir=/var/lib/bitcoind
always-use-proxy=false
bind-addr=0.0.0.0:9735
bitcoin-rpcconnect=127.0.0.1
bitcoin-rpcport=8332
bitcoin-rpcuser=public
rpc-file-mode=0660
log-timestamps=false
plugin=${ln-gateway}/bin/ln_gateway
fedimint-cfg=/var/fedimint/fedimint-gw
announce-addr=104.244.73.68:9735
alias=fm-signet.sirion.io
large-channels
experimental-offers
fee-base=0
fee-per-satoshi=100
''; in
pkgs.dockerTools.buildLayeredImage {
name = "ln-gateway-clightning";
contents = [ ln-gateway clightning-dev pkgs.bash pkgs.coreutils ];
config = {
Cmd = [
"${ln-gateway}/bin/ln_gateway"
];
ExposedPorts = {
"${builtins.toString 9735}/tcp" = { };
};
};
enableFakechroot = true;
fakeRootCommands = ''
ln -s ${config-example} /config-example.cfg
'';
};
fedimint-cli = pkgs.dockerTools.buildLayeredImage {
name = "fedimint-cli";
contents = [ fedimint-cli pkgs.bash pkgs.coreutils ];
config = {
Cmd = [
"${fedimint-cli}/bin/fedimint-cli"
];
};
};
};
};
checks = {
inherit
workspaceBuild
workspaceClippy;
};
devShells =
let shellCommon = {
buildInputs = commonArgs.buildInputs;
nativeBuildInputs = with pkgs; commonArgs.nativeBuildInputs ++ [
fenix.packages.${system}.rust-analyzer
fenixToolchainRustfmt
cargo-llvm-cov
cargo-udeps
# This is required to prevent a mangled bash shell in nix develop
# see: https://discourse.nixos.org/t/interactive-bash-with-nix-develop-flake/15486
(hiPrio pkgs.bashInteractive)
tmux
tmuxinator
# Nix
pkgs.nixpkgs-fmt
pkgs.shellcheck
pkgs.rnix-lsp
pkgs.nodePackages.bash-language-server
] ++ cliTestsDeps;
RUST_SRC_PATH = "${fenixChannel.rust-src}/lib/rustlib/src/rust/library";
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib/";
shellHook = ''
# auto-install git hooks
if [[ ! -d .git/hooks ]]; then mkdir .git/hooks; fi
for hook in misc/git-hooks/* ; do ln -sf "../../$hook" "./.git/hooks/" ; done
${pkgs.git}/bin/git config commit.template misc/git-hooks/commit-template.txt
# workaround https://github.com/rust-lang/cargo/issues/11020
cargo_cmd_bins=( $(ls $HOME/.cargo/bin/cargo-{clippy,udeps,llvm-cov} 2>/dev/null) )
if (( ''${#cargo_cmd_bins[@]} != 0 )); then
echo "Warning: Detected binaries that might conflict with reproducible environment: ''${cargo_cmd_bins[@]}" 1>&2
echo "Warning: Considering deleting them. See https://github.com/rust-lang/cargo/issues/11020 for details" 1>&2
fi
'';
};
in
{
# The default shell - meant to developers working on the project,
# so notably not building any project binaries, but including all
# the settings and tools neccessary to build and work with the codebase.
default = pkgs.mkShell (shellCommon
// {
nativeBuildInputs = shellCommon.nativeBuildInputs ++ [ fenixToolchain ];
});
# Shell with extra stuff to support cross-compilation with `cargo build --target <target>`
#
# This will pull extra stuff so to save time and download time to most common developers,
# was moved into another shell.
cross = pkgs.mkShell (shellCommon // {
nativeBuildInputs = shellCommon.nativeBuildInputs ++ [ fenixToolchainCrossAll ];
shellHook = shellCommon.shellHook +
# Android NDK not available for Arm MacOS
(if isArch64Darwin then "" else androidCrossEnvVars)
+ wasm32CrossEnvVars;
});
# this shell is used only in CI, so it should contain minimum amount
# of stuff to avoid building and caching things we don't need
lint = pkgs.mkShell {
nativeBuildInputs = [
fenixToolchainCargoFmt
pkgs.nixpkgs-fmt
pkgs.shellcheck
pkgs.git
];
};
replit = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
pkg-config
openssl
];
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib/";
};
bootstrap = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
cachix
];
};
};
});
}