-
Notifications
You must be signed in to change notification settings - Fork 72
/
flake.nix
346 lines (320 loc) · 10.6 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
{
description = "VsCoq 2, a language server for Coq based on LSP";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
coq-master = { url = "github:coq/coq/d6dd8a618cbf628a6580c9a42db0cf5f44606bea"; }; # Should be kept in sync with PIN_COQ in CI workflow
coq-master.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {
self,
nixpkgs,
flake-utils,
coq-master,
}:
flake-utils.lib.eachDefaultSystem (system: let
name = "vscoq-client";
vscodeExtPublisher = "maximedenes";
vscodeExtName = "vscoq";
vscodeExtUniqueId = "maximedenes.vscoq";
vscoq_version = "2.2.3";
coq = coq-master.packages.${system};
in rec {
formatter = nixpkgs.legacyPackages.${system}.alejandra;
packages = {
default = self.packages.${system}.vscoq-language-server-coq-8-20;
vscoq-language-server-coq-8-18 =
# Notice the reference to nixpkgs here.
with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
ocamlPackages.buildDunePackage {
duneVersion = "3";
pname = "vscoq-language-server";
version = vscoq_version;
src = ./language-server;
nativeBuildInputs = [
coq_8_18
];
buildInputs =
[
coq_8_18
dune_3
]
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
wrapGAppsHook
ocaml
findlib
yojson
ppx_inline_test
ppx_assert
ppx_sexp_conv
ppx_deriving
ppx_optcomp
ppx_import
sexplib
ppx_yojson_conv
lsp
sel
]);
propagatedBuildInputs= (with coq.ocamlPackages;
[
zarith
]);
};
vscoq-language-server-coq-8-19 =
# Notice the reference to nixpkgs here.
with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
ocamlPackages.buildDunePackage {
duneVersion = "3";
pname = "vscoq-language-server";
version = vscoq_version;
src = ./language-server;
nativeBuildInputs = [
coq_8_19
];
buildInputs =
[
coq_8_19
dune_3
]
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
wrapGAppsHook
ocaml
yojson
findlib
ppx_inline_test
ppx_assert
ppx_sexp_conv
ppx_deriving
ppx_optcomp
ppx_import
sexplib
ppx_yojson_conv
lsp
sel
]);
propagatedBuildInputs= (with coq.ocamlPackages;
[
zarith
]);
};
vscoq-language-server-coq-8-20 =
# Notice the reference to nixpkgs here.
with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
ocamlPackages.buildDunePackage {
duneVersion = "3";
pname = "vscoq-language-server";
version = vscoq_version;
src = ./language-server;
nativeBuildInputs = [
coq_8_20
];
buildInputs =
[
coq_8_20
dune_3
]
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
wrapGAppsHook
ocaml
yojson
findlib
ppx_inline_test
ppx_assert
ppx_sexp_conv
ppx_deriving
ppx_optcomp
ppx_import
sexplib
ppx_yojson_conv
lsp
sel
]);
propagatedBuildInputs= (with coq.ocamlPackages;
[
zarith
]);
};
vscoq-language-server-coq-master =
# Notice the reference to nixpkgs here.
with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
ocamlPackages.buildDunePackage {
duneVersion = "3";
pname = "vscoq-language-server";
version = vscoq_version;
src = ./language-server;
nativeBuildInputs = [
coq
];
buildInputs =
[
coq
dune_3
]
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
wrapGAppsHook
ocaml
yojson
findlib
ppx_inline_test
ppx_assert
ppx_sexp_conv
ppx_deriving
ppx_optcomp
ppx_import
sexplib
ppx_yojson_conv
lsp
sel
]);
propagatedBuildInputs= (with coq.ocamlPackages;
[
zarith
]);
};
vscoq-client = with import nixpkgs {inherit system;}; let
yarn_deps = name: (path: (mkYarnModules {
pname = "${name}_yarn_deps";
version = vscoq_version;
packageJSON = ./${path}/package.json;
yarnLock = ./${path}/yarn.lock;
yarnNix = ./${path}/yarn.nix;
}));
client_deps = yarn_deps "client" /client;
goal_view_ui_deps = yarn_deps "goal_ui" /client/goal-view-ui;
search_ui_deps = yarn_deps "search_ui" /client/search-ui;
link_deps = x: (p: ''
ln -s ${x}/node_modules ${p}
export PATH=${x}/node_modules/.bin:$PATH
'');
links = [
(link_deps client_deps ".")
(link_deps goal_view_ui_deps "./goal-view-ui")
(link_deps search_ui_deps "./search-ui")
];
cmds = builtins.concatStringsSep "\n" links;
src = ./client;
nativeBuildInputs =
[
nodejs
yarn
]
++ [client_deps goal_view_ui_deps search_ui_deps];
installPrefix = "share/vscode/extensions/${vscodeExtUniqueId}";
in {
extension = pkgs.vscode-utils.buildVscodeExtension {
inherit name vscodeExtName vscodeExtPublisher vscodeExtUniqueId src nativeBuildInputs;
version = vscoq_version;
buildPhase =
cmds
+ ''
cd goal-view-ui
yarn run build
cd ../search-ui
yarn run build
cd ..
webpack --mode=production --devtool hidden-source-map
'';
};
vsix_archive = stdenv.mkDerivation {
name = "vscoq-client-vsix";
unpackPhase = ''
cp -r ${self.packages.${system}.vscoq-client.extension}/share/vscode/extensions/${vscodeExtUniqueId}/* .
ls -alt
pwd
'';
nativeBuildInputs = [
self.packages.${system}.vscoq-client.extension
client_deps
nodejs
yarn
];
buildPhase = ''
export PATH=${client_deps}/node_modules/.bin:$PATH
bash -c "yes y | vsce package"
mkdir -p $out/share/vscode/extensions
cp *.vsix $out/share/vscode/extensions
'';
};
};
};
devShells = {
vscoq-8-18 = with import nixpkgs {inherit system;};
mkShell {
buildInputs =
self.packages.${system}.vscoq-client.extension.buildInputs
++ self.packages.${system}.vscoq-language-server-coq-8-18.buildInputs
++ (with ocamlPackages; [
ocaml-lsp
])
++ ([git]);
};
vscoq-8-19 = with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
mkShell {
buildInputs =
self.packages.${system}.vscoq-client.extension.buildInputs
++ self.packages.${system}.vscoq-language-server-coq-8-19.buildInputs
++ (with ocamlPackages; [
ocaml-lsp
])
++ ([git]);
};
vscoq-8-20 = with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
mkShell {
buildInputs =
self.packages.${system}.vscoq-client.extension.buildInputs
++ self.packages.${system}.vscoq-language-server-coq-8-20.buildInputs
++ (with ocamlPackages; [
ocaml-lsp
])
++ ([git]);
};
vscoq-master = with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
mkShell {
buildInputs =
self.packages.${system}.vscoq-client.extension.buildInputs
++ self.packages.${system}.vscoq-language-server-coq-master.buildInputs
++ (with ocamlPackages; [
ocaml-lsp
])
++ ([git]);
};
default = with import nixpkgs {inherit system;}; let
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
in
mkShell {
buildInputs =
self.packages.${system}.vscoq-client.extension.buildInputs
++ self.packages.${system}.vscoq-language-server-coq-8-20.buildInputs
++ (with ocamlPackages; [
ocaml-lsp
])
++ ([git]);
};
};
});
}