-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
215 lines (193 loc) · 6.11 KB
/
flake.nix
File metadata and controls
215 lines (193 loc) · 6.11 KB
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
{
description = "Wormhole: a URL shortener service";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
crane.url = "github:ipetkov/crane";
flake-utils.url = "github:numtide/flake-utils";
gomod2nix = {
url = "github:nix-community/gomod2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
nixpkgs,
crane,
flake-utils,
gomod2nix,
rust-overlay,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ (import rust-overlay) ];
};
craneLib = (crane.mkLib pkgs).overrideToolchain (
p: p.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml
);
inherit (pkgs) lib;
# helper to build Go applications using gomod2nix
buildGoApplication = gomod2nix.legacyPackages.${system}.buildGoApplication;
unfilteredRoot = ./.;
src = craneLib.cleanCargoSource unfilteredRoot;
# Common arguments can be set here to avoid repeating them later
commonArgs = {
inherit src;
strictDeps = true;
nativeBuildInputs = with pkgs; [
protobuf
];
buildInputs =
[ ]
++ lib.optionals pkgs.stdenv.isDarwin [
pkgs.libiconv
];
};
commonArgsExtra = commonArgs // {
src = lib.fileset.toSource {
root = unfilteredRoot;
fileset = lib.fileset.unions [
(craneLib.fileset.commonCargoSources unfilteredRoot)
(lib.fileset.fileFilter (file: file.hasExt "proto") unfilteredRoot)
(lib.fileset.fileFilter (file: file.hasExt "sql") unfilteredRoot)
];
};
};
cargoArtifacts = craneLib.buildDepsOnly commonArgs;
individualCrateArgs = commonArgs // {
inherit cargoArtifacts;
inherit (craneLib.crateNameFromCargoToml { inherit src; }) version;
# NB: we disable tests since we'll run them all via cargo-nextest
doCheck = false;
};
fileSetForCrate =
crate:
lib.fileset.toSource {
root = unfilteredRoot;
fileset = lib.fileset.unions [
./Cargo.toml
./Cargo.lock
(craneLib.fileset.commonCargoSources unfilteredRoot)
(lib.fileset.fileFilter (file: file.hasExt "proto") unfilteredRoot)
(lib.fileset.fileFilter (file: file.hasExt "sql") unfilteredRoot)
];
};
# gateway
wormhole-gateway = craneLib.buildPackage (
individualCrateArgs
// {
inherit cargoArtifacts;
pname = "wormhole-gateway";
cargoExtraArgs = "-p wormhole-gateway";
src = fileSetForCrate ./crates/wormhole-gateway;
}
);
# redirector service
wormhole-redirector = craneLib.buildPackage (
individualCrateArgs
// {
inherit cargoArtifacts;
pname = "wormhole-redirector";
cargoExtraArgs = "-p wormhole-redirector";
src = fileSetForCrate ./crates/wormhole-redirector;
}
);
# shortener service
wormhole-shortener = craneLib.buildPackage (
individualCrateArgs
// {
inherit cargoArtifacts;
pname = "wormhole-shortener";
cargoExtraArgs = "-p wormhole-shortener";
src = fileSetForCrate ./crates/wormhole-shortener;
}
);
wormhole-analytics = buildGoApplication {
pname = "wormhole-analytics";
version = "0.1.0";
src = ./analytics;
modules = ./analytics/gomod2nix.toml;
subPackages = [ "cmd/server" ];
go = pkgs.go_1_25;
postInstall = ''
mv $out/bin/server $out/bin/analytics
'';
};
image = pkgs.dockerTools.buildLayeredImage {
name = "wormhole";
tag = "latest";
contents = [
wormhole-gateway
wormhole-redirector
wormhole-shortener
pkgs.grpc-health-probe
];
config = {
Cmd = [ ];
WorkingDir = "/tmp";
};
};
in
{
checks = {
inherit
wormhole-redirector
wormhole-shortener
wormhole-gateway
wormhole-analytics
image
;
wormhole-clippy = craneLib.cargoClippy (
commonArgsExtra
// {
inherit cargoArtifacts;
# we are in active development, so we don't want to fail
# the check on warnings, but we still want to see them
cargoClippyExtraArgs = "--all-targets";
# cargoClippyExtraArgs = "--all-targets -- --deny warnings";
}
);
wormhole-doc = craneLib.cargoDoc (
commonArgsExtra
// {
inherit cargoArtifacts;
env.RUSTDOCFLAGS = "--deny warnings";
}
);
wormhole-fmt = craneLib.cargoFmt {
inherit src;
};
wormhole-toml-fmt = craneLib.taploFmt {
src = lib.sources.sourceFilesBySuffices src [ ".toml" ];
};
# todo: re-enable this when we split unit tests and integration tests
# wormhole-nextest = craneLib.cargoNextest (
# commonArgs
# // {
# inherit cargoArtifacts;
# partitions = 1;
# partitionType = "count";
# cargoNextestPartitionsExtraArgs = "--no-tests=pass";
# }
# );
};
packages = {
inherit
wormhole-redirector
wormhole-shortener
wormhole-gateway
wormhole-analytics
image
;
};
}
);
}