-
Notifications
You must be signed in to change notification settings - Fork 6
/
flake.nix
250 lines (219 loc) · 6.35 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
{
inputs = {
crane.url = "github:ipetkov/crane";
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
outputs =
{
crane,
flake-utils,
nixpkgs,
rust-overlay,
self,
...
}:
flake-utils.lib.eachDefaultSystem (
localSystem:
let
pkgs = import nixpkgs {
inherit localSystem;
overlays = [ (import rust-overlay) ];
};
inherit (pkgs) lib;
rustToolchain = pkgs.pkgsBuildHost.rust-bin.stable.latest.default.override {
targets = [ "wasm32-unknown-unknown" ];
};
craneLib = (crane.mkLib pkgs).overrideToolchain rustToolchain;
commonArgs = {
src = lib.cleanSourceWith {
src = ./.;
filter = path: type: (lib.hasSuffix ".wgsl" path) || (craneLib.filterCargoSources path type);
};
strictDeps = true;
buildInputs =
lib.optionals pkgs.stdenv.isLinux (
with pkgs;
[
alsa-lib
alsa-lib.dev
libxkbcommon
udev
vulkan-loader
wayland
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
]
)
++ lib.optionals pkgs.stdenv.isDarwin (with pkgs; [ darwin.apple_sdk.frameworks.Cocoa ]);
nativeBuildInputs =
(with pkgs; [
binaryen
nodePackages.prettier
pkg-config
trunk
wasm-bindgen-cli
])
++ lib.optionals (!pkgs.stdenv.isDarwin) (
with pkgs;
[
alsa-lib
alsa-lib.dev
]
);
};
commonShell = {
checks = self.checks.${localSystem};
packages = with pkgs; [
cargo-rdme
cargo-release
cargo-watch
rust-analyzer
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath commonArgs.buildInputs;
};
cargoArtifacts = craneLib.buildDepsOnly (commonArgs // { pname = "deps"; });
cargoClippy = craneLib.cargoClippy (
commonArgs
// {
inherit cargoArtifacts;
pname = "clippy";
}
);
cargoDoc = craneLib.cargoDoc (
commonArgs
// {
inherit cargoArtifacts;
pname = "doc";
}
);
bevy_shader_mtoon = craneLib.buildPackage (
commonArgs
// {
inherit cargoArtifacts;
pname = "bevy_shader_mtoon";
cargoExtraArgs = "--locked -p bevy_shader_mtoon";
}
);
bevy_vrm = craneLib.buildPackage (
commonArgs
// {
inherit cargoArtifacts;
pname = "bevy_vrm";
cargoExtraArgs = "--locked -p bevy_vrm";
}
);
gltf_kun_vrm = craneLib.buildPackage (
commonArgs
// {
inherit cargoArtifacts;
pname = "gltf_kun_vrm";
cargoExtraArgs = "--locked -p gltf_kun_vrm";
}
);
serde_vrm = craneLib.buildPackage (
commonArgs
// {
inherit cargoArtifacts;
pname = "serde_vrm";
cargoExtraArgs = "--locked -p serde_vrm";
}
);
vrm_viewer = craneLib.buildPackage (
commonArgs
// {
inherit cargoArtifacts;
src = lib.cleanSourceWith {
src = ./.;
filter =
path: type:
(lib.hasSuffix ".wgsl" path)
|| (lib.hasInfix "/assets/" path)
|| (craneLib.filterCargoSources path type);
};
pname = "vrm_viewer";
cargoExtraArgs = "--locked -p vrm_viewer";
postInstall = ''
cp -r assets $out/bin/
'';
}
);
vrm_viewer_web = craneLib.buildTrunkPackage (
commonArgs
// {
src = lib.cleanSourceWith {
src = ./.;
filter =
path: type:
(lib.hasSuffix ".wgsl" path)
|| (lib.hasSuffix ".html" path)
|| (lib.hasInfix "/assets/" path)
|| (lib.hasInfix "/crates/vrm_viewer/public/" path)
|| (craneLib.filterCargoSources path type);
};
pname = "vrm_viewer_web";
cargoExtraArgs = "--locked -p vrm_viewer";
trunkIndexPath = "./crates/vrm_viewer/index.html";
wasm-bindgen-cli = pkgs.wasm-bindgen-cli;
}
);
in
{
checks = {
inherit
bevy_vrm
bevy_shader_mtoon
gltf_kun_vrm
serde_vrm
vrm_viewer
vrm_viewer_web
cargoClippy
cargoDoc
;
};
apps = {
generate-readme = flake-utils.lib.mkApp {
drv = pkgs.writeShellScriptBin "generate-readme" ''
cd crates
for folder in */; do
(cd $folder && cargo rdme)
done
'';
};
vrm_viewer = flake-utils.lib.mkApp { drv = vrm_viewer; };
vrm_viewer_web = flake-utils.lib.mkApp {
drv = pkgs.writeShellScriptBin "vrm_viewer_web" ''
${pkgs.python3Minimal}/bin/python3 -m http.server --directory ${
self.packages.${localSystem}.vrm_viewer_web
} 3000
'';
};
};
packages = {
bevy_shader_mtoon = bevy_shader_mtoon;
bevy_vrm = bevy_vrm;
gltf_kun_vrm = gltf_kun_vrm;
serde_vrm = serde_vrm;
vrm_viewer = vrm_viewer;
vrm_viewer_web = vrm_viewer_web;
default = pkgs.symlinkJoin {
name = "viewer";
paths = [
vrm_viewer
vrm_viewer_web
];
};
};
devShells.default = craneLib.devShell commonShell;
formatter = pkgs.nixfmt-rfc-style;
}
);
}