forked from ocaml/dune
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
502 lines (482 loc) · 16.4 KB
/
flake.nix
File metadata and controls
502 lines (482 loc) · 16.4 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
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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-old.url = "github:nixos/nixpkgs/7f50d4b33363d3948543f6a02b90a2c66852a453";
melange = {
url = "github:melange-re/melange/v6-54";
inputs.nixpkgs.follows = "nixpkgs";
};
ocaml-overlays = {
url = "github:nix-ocaml/nix-overlays";
inputs.nixpkgs.follows = "nixpkgs";
};
oxcaml = {
url = "github:oxcaml/oxcaml";
inputs.nixpkgs.follows = "nixpkgs";
};
oxcaml-opam-repository = {
url = "github:oxcaml/opam-repository";
flake = false;
};
};
outputs =
{
self,
nixpkgs,
nixpkgs-old,
melange,
ocaml-overlays,
oxcaml,
oxcaml-opam-repository,
}:
let
forAllSystems =
f:
nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (
system:
let
pkgs = nixpkgs.legacyPackages.${system}.appendOverlays [
ocaml-overlays.overlays.default
(self: super: {
ocamlPackages = super.ocaml-ng.ocamlPackages_5_4.overrideScope (
oself: osuper: {
ocaml = osuper.ocaml.override {
flambdaSupport = false;
framePointerSupport = true;
};
mdx = osuper.mdx.override {
logs = oself.logs;
};
utop = osuper.utop.overrideAttrs {
dontGzipMan = true;
};
}
);
})
melange.overlays.default
(self: super: {
coq_8_16_native = super.coq_8_16.overrideAttrs (a: {
configureFlags = [
"-native-compiler"
"yes"
];
});
})
];
in
f pkgs
);
in
{
formatter = forAllSystems (pkgs: pkgs.nixfmt);
packages = forAllSystems (
pkgs:
let
dune-static-overlay = self: super: {
ocamlPackages = super.ocaml-ng.ocamlPackages_5_4.overrideScope (
oself: osuper: {
dune_3 = osuper.dune_3.overrideAttrs (a: {
src = ./.;
preBuild = "ocaml boot/bootstrap.ml --static";
});
}
);
};
pkgs-static = nixpkgs.legacyPackages.${pkgs.stdenv.hostPlatform.system}.appendOverlays [
ocaml-overlays.overlays.default
dune-static-overlay
];
in
{
default =
with pkgs;
stdenv.mkDerivation {
pname = "dune";
version = "3.x-n/a";
src =
let
fs = lib.fileset;
in
fs.toSource {
root = ./.;
fileset = fs.unions [
./bin
./boot
./configure
./dune-project
./dune-file
./src
./plugin
./vendor
./otherlibs
./Makefile
(fs.fileFilter (file: file.hasExt "opam" || file.hasExt "template") ./.)
];
};
nativeBuildInputs = with ocamlPackages; [
ocaml
findlib
];
strictDeps = true;
buildFlags = [ "release" ];
dontAddPrefix = true;
dontAddStaticConfigureFlags = true;
configurePlatforms = [ ];
installFlags = [
"PREFIX=${placeholder "out"}"
"LIBDIR=$(OCAMLFIND_DESTDIR)"
];
};
dune = self.packages.${pkgs.stdenv.hostPlatform.system}.default;
dune-static = pkgs-static.pkgsCross.musl64.ocamlPackages.dune;
}
);
devShells = forAllSystems (
pkgs:
let
INSIDE_NIX = "true";
applyOxcamlPatches = import ./nix/ox-patches.nix {
inherit pkgs;
lib = pkgs.lib;
oxcamlOpamRepo = oxcaml-opam-repository;
};
# Older nixpkgs for OCaml 4.02 support
pkgs-old = nixpkgs-old.legacyPackages.${pkgs.stdenv.hostPlatform.system}.appendOverlays [
ocaml-overlays.overlays.default
];
ocamlformat =
let
lists = pkgs.lib.lists;
strings = pkgs.lib.strings;
ocamlformat_config = strings.splitString "\n" (builtins.readFile ./.ocamlformat);
prefix = "version=";
ocamlformat_version_pred = line: strings.hasPrefix prefix line;
version_line = lists.findFirst ocamlformat_version_pred "not_found" ocamlformat_config;
version_string = strings.removePrefix prefix version_line;
ocamlformat_attr = builtins.replaceStrings [ "." ] [ "_" ] version_string;
in
builtins.getAttr (
"ocamlformat_" + ocamlformat_attr
) nixpkgs.legacyPackages.${pkgs.stdenv.hostPlatform.system};
testBuildInputs =
with pkgs;
[
bc
file
jq
mercurial
unzip
coreutils
bc
curl
git
binaryen
procps
which
]
++ lib.optionals stdenv.isLinux [ strace ];
testNativeBuildInputs =
pkgs: with pkgs; [
nodejs-slim
pkg-config
opam
ocamlformat
];
docInputs = with pkgs.python3.pkgs; [
sphinx-autobuild
furo
sphinx-copybutton
sphinx-design
myst-parser
];
makeDuneDevShell =
{
extraBuildInputs ? (pkgs: [ ]),
meta ? null,
duneFromScope ? false,
includeTestDeps ? true,
packageOverrides ? (oself: osuper: { }),
}:
let
hasOcamlOverride = (packageOverrides { } { ocaml = null; }) ? ocaml;
pkgs' =
if hasOcamlOverride then
pkgs.extend (
pself: psuper: {
ocamlPackages = psuper.ocamlPackages.overrideScope (
oself: osuper:
(pkgs.lib.mapAttrs (
name: pkg:
if pkgs.lib.isDerivation pkg && pkg ? overrideAttrs then
pkg.overrideAttrs (old: {
doCheck = false;
})
else
pkg
) osuper)
// (packageOverrides oself osuper)
);
}
)
else if duneFromScope then
pkgs.extend (
pself: psuper: {
ocamlPackages = psuper.ocamlPackages.overrideScope (
oself: osuper: {
dune_3 = self.packages.${pkgs.stdenv.hostPlatform.system}.default;
}
);
}
)
else
pkgs;
inherit (pkgs') writeScriptBin stdenv;
duneScript = writeScriptBin "dune" ''
#!${stdenv.shell}
"$DUNE_SOURCE_ROOT"/_boot/dune.exe $@
'';
baseInputs = if includeTestDeps then (testNativeBuildInputs pkgs') ++ docInputs else [ ];
ocamlLibs =
if includeTestDeps then
(with pkgs'.ocamlPackages; [
ctypes
cinaps
integers
lwt
mdx
menhir
merlin
ocaml-index
ocaml-lsp
odoc
patdiff
pp
ppx_expect
re
spawn
uutf
])
else
[ ];
in
pkgs'.mkShell {
shellHook = ''
export DUNE_SOURCE_ROOT=$PWD
'';
inherit meta;
nativeBuildInputs =
baseInputs
++ pkgs'.lib.optionals stdenv.isDarwin [ pkgs'.darwin.sigtool ]
++ [ duneScript ]
++ (if hasOcamlOverride then [ pkgs'.ocamlPackages.ocaml ] else [ ]);
inputsFrom = if hasOcamlOverride then [ ] else [ pkgs'.ocamlPackages.dune_3 ];
buildInputs =
(if includeTestDeps then testBuildInputs else [ ])
++ ocamlLibs
++ (extraBuildInputs pkgs')
++ (if hasOcamlOverride then [ pkgs'.ocamlPackages.findlib ] else [ ]);
inherit INSIDE_NIX;
dontDetectOcamlConflicts = hasOcamlOverride;
};
in
{
doc = pkgs.mkShell {
inherit INSIDE_NIX;
buildInputs = docInputs;
meta.description = ''
Provides a shell environment suitable for building the Dune
documentation website (e.g. `make doc`).
'';
};
fmt = pkgs.mkShell {
inherit INSIDE_NIX;
nativeBuildInputs = [ ocamlformat ];
inputsFrom = [
pkgs.dune_3
];
buildInputs = with pkgs.ocamlPackages; [
csexp
pp
# re shouldn't be needed. this is an issue with the fmt rules
re
spawn
uutf
findlib
];
meta.description = ''
Provides a shell environment suitable for formatting the Dune
codebase source code (e.g. with `make fmt`).
'';
};
slim = makeDuneDevShell {
meta.description = ''
Provides a minimal shell environment built purely from nixpkgs
that can run the testsuite (except the coq / melange tests).
'';
};
slim-melange = makeDuneDevShell {
extraBuildInputs = pkgs: [
pkgs.ocamlPackages.melange
];
meta.description = ''
Provides a minimal shell environment built purely from nixpkgs
that can run the testsuite (except the coq tests).
'';
};
slim-opam =
with pkgs;
mkShell {
inherit INSIDE_NIX;
nativeBuildInputs = lib.remove pkgs.ocamlformat (testNativeBuildInputs pkgs);
meta.description = ''
provides a shell with just `opam` and minimal (external)
dependencies to run the testsuite.";
'';
};
coq = pkgs.mkShell {
inherit INSIDE_NIX;
nativeBuildInputs = (testNativeBuildInputs pkgs);
# Coq requires OCaml 4.x
inputsFrom = [
pkgs.ocaml-ng.ocamlPackages_4_14.dune_3
];
buildInputs = with pkgs; [
ocaml-ng.ocamlPackages_4_14.csexp
ocaml-ng.ocamlPackages_4_14.pp
ocaml-ng.ocamlPackages_4_14.re
ocaml-ng.ocamlPackages_4_14.spawn
ocaml-ng.ocamlPackages_4_14.uutf
coq_8_16_native
coq_8_16_native.ocamlPackages.findlib
];
meta.description = ''
Provides a minimal shell environment built purely from nixpkgs
that can build Dune and the Coq testsuite.
'';
};
bootstrap-check = pkgs.mkShell {
inherit INSIDE_NIX;
buildInputs = [
pkgs.gnumake
pkgs-old.ocaml-ng.ocamlPackages_4_02.ocaml
];
meta.description = ''
Provides a minimal shell environment with OCaml 4.02 in order
to test the bootstrapping script.
'';
};
bootstrap-check_4_08 = pkgs.mkShell {
inherit INSIDE_NIX;
buildInputs = [
pkgs.gnumake
pkgs-old.ocaml-ng.ocamlPackages_4_08.ocaml
];
meta.description = ''
Provides a minimal shell environment with OCaml 4.08 in order
to test the bootstrapping script.
'';
};
bootstrap-ox = pkgs.mkShell {
inherit INSIDE_NIX;
buildInputs = [
pkgs.gnumake
oxcaml.packages.${pkgs.stdenv.hostPlatform.system}.default
];
meta.description = ''
Provides a minimal shell environment with OxCaml in order to
test the bootstrapping script.
'';
};
ox-minimal = makeDuneDevShell {
includeTestDeps = false;
packageOverrides =
oself: osuper:
(applyOxcamlPatches oself osuper)
// {
# dune_3 = self.packages.${system}.default;
ocaml = oxcaml.packages.${pkgs.stdenv.hostPlatform.system}.default.overrideAttrs (old: {
passthru = (old.passthru or { }) // pkgs.ocamlPackages.ocaml.passthru;
meta = (old.meta or { }) // pkgs.ocamlPackages.ocaml.meta;
});
spawn = osuper.spawn.overrideAttrs (old: {
doCheck = false;
});
csexp = osuper.csexp.overrideAttrs (old: {
doCheck = false;
});
pp = osuper.pp.overrideAttrs (old: {
doCheck = false;
});
};
extraBuildInputs =
pkgs: with pkgs.ocamlPackages; [
csexp
pp
re
spawn
uutf
findlib
];
meta.description = ''
Provides a minimal shell environment with OxCaml in order to
run the OxCaml tests.
'';
};
ox = makeDuneDevShell {
packageOverrides =
oself: osuper:
(applyOxcamlPatches oself osuper)
// {
dune_3 = self.packages.${pkgs.stdenv.hostPlatform.system}.default;
ocaml = oxcaml.packages.${pkgs.stdenv.hostPlatform.system}.default.overrideAttrs (old: {
passthru = (old.passthru or { }) // pkgs.ocamlPackages.ocaml.passthru;
meta = (old.meta or { }) // pkgs.ocamlPackages.ocaml.meta;
});
};
meta.description = ''
Provides a full shell environment with the OxCaml compiler to
develop with Dune. Warning: does not work.
'';
};
microbench = makeDuneDevShell {
extraBuildInputs = pkgs: [
pkgs.ocamlPackages.core_bench
];
meta.description = ''
Provides a minimal shell environment that can build the
microbenchmarks.
'';
};
scope = makeDuneDevShell {
duneFromScope = true;
meta.description = ''
Provides a minimal shell environment built purely from nixpkgs
that replaces the Dune executable in the `ocamlPackages` scope by
the Dune binary built by from the repo.
'';
};
default = makeDuneDevShell {
extraBuildInputs =
pkgs:
(with pkgs; [
# dev tools
ccls
])
++ (with pkgs.ocamlPackages; [
core_bench
js_of_ocaml
js_of_ocaml-compiler
ocaml-lsp
pkgs.ocamlPackages.melange
utop
wasm_of_ocaml-compiler
]);
meta.description = ''
Provides a shell environment where `dune` is provided and built
using the source code in this repo.
'';
};
}
);
};
}