forked from maelstrom-software/maelstrom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nix
71 lines (62 loc) · 1.49 KB
/
package.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
{
lib,
stdenv,
craneLib,
binaryen,
mdbook,
pkg-config,
protobuf,
llvmPackages,
openssl,
libiconv,
python3,
python311Packages,
mypy,
black,
zola,
go,
version ? null
}:
let
inherit (craneLib) buildPackage filterCargoSources path;
inherit (lib) cleanSourceWith optionals;
inherit (lib.strings) match;
# Only keeps `.tar`, `.proto`, `.pem`, `.py` files, plus normal Rust files.
srcFilter = path: type: (match ".*\.(tar|proto|pem|py)$" path != null) || (filterCargoSources path type);
self = buildPackage {
pname = "maelstrom";
inherit version;
src = cleanSourceWith {
src = path ./.;
filter = srcFilter;
};
strictDeps = true;
# maelstrom-web has a WASM build step that shells out to `cargo`, and needs to be informed about
# being inside the Nix build sandbox.
postUnpack = ''
mkdir source/crates/maelstrom-web/.cargo
ln -s ${self.cargoVendorDir}/config.toml source/crates/maelstrom-web/.cargo/config.toml
'';
nativeBuildInputs = [
binaryen
black
pkg-config
llvmPackages.bintools
mypy
protobuf
python3
python311Packages.grpcio-tools
python311Packages.pytest
python311Packages.tqdm
python311Packages.types-protobuf
python311Packages.xdg-base-dirs
mdbook
zola
go
];
buildInputs = [ openssl ] ++ optionals stdenv.isDarwin [ libiconv ];
# Don't run the unit tests inside Nix build.
doCheck = false;
};
in
self