-
Notifications
You must be signed in to change notification settings - Fork 466
Expand file tree
/
Copy pathflake.nix
More file actions
621 lines (599 loc) · 21.3 KB
/
flake.nix
File metadata and controls
621 lines (599 loc) · 21.3 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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
{
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";
};
odoc-src = {
url = "github:ocaml/odoc/d8460cdaa2b91a03434a9a045d673703b7fabfb2";
flake = false;
};
oxcaml = {
url = "github:oxcaml/oxcaml";
inputs.nixpkgs.follows = "nixpkgs";
};
oxcaml-opam-repository = {
url = "github:oxcaml/opam-repository";
flake = false;
};
revdeps-dune = {
url = "github:ocaml/dune";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs-old.follows = "nixpkgs-old";
inputs.odoc-src.follows = "odoc-src";
inputs.oxcaml.follows = "oxcaml";
inputs.ocaml-overlays.follows = "ocaml-overlays";
inputs.melange.follows = "melange";
inputs.oxcaml-opam-repository.follows = "oxcaml-opam-repository";
inputs.revdeps-dune.follows = "revdeps-dune";
};
};
outputs =
{
self,
nixpkgs,
nixpkgs-old,
melange,
ocaml-overlays,
odoc-src,
oxcaml,
oxcaml-opam-repository,
revdeps-dune,
}:
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;
};
odoc-parser = osuper.odoc-parser.overrideAttrs (old: {
version = "3.1.0";
src = odoc-src;
doCheck = false;
});
odoc = osuper.odoc.overrideAttrs (old: {
version = "3.1.0";
src = odoc-src;
doCheck = false;
});
rocq-core = super.rocqPackages_9_1.rocq-core.override {
customOCamlPackages = oself;
};
mkRocqDerivation = super.rocqPackages_9_1.mkRocqDerivation.override {
rocq-core = oself.rocq-core;
};
rocq-stdlib = super.rocqPackages_9_1.stdlib.override {
rocq-core = oself.rocq-core;
mkRocqDerivation = oself.mkRocqDerivation;
};
# Native compilation requires OCaml 4.14
ocamlPackages_4_14 = super.ocaml-ng.ocamlPackages_4_14.overrideScope (
oself414: osuper414: {
ocaml = osuper414.ocaml.override {
flambdaSupport = false;
};
rocq-core =
(super.rocqPackages_9_1.rocq-core.override {
customOCamlPackages = oself414;
}).overrideAttrs
(a: {
configureFlags = (a.configureFlags or [ ]) ++ [
"-native-compiler"
"yes"
];
});
mkRocqDerivation = super.rocqPackages_9_1.mkRocqDerivation.override {
rocq-core = oself414.rocq-core;
};
rocq-stdlib = super.rocqPackages_9_1.stdlib.override {
rocq-core = oself414.rocq-core;
mkRocqDerivation = oself414.mkRocqDerivation;
};
}
);
}
);
})
melange.overlays.default
];
in
f pkgs
);
in
{
formatter = forAllSystems (pkgs: pkgs.nixfmt);
# ocamlPackages with dune_3 replaced by specified source
#
# IMPORTANT: revdeps-dune input must be overridden, the default is likely stale
#
# Usage:
#
# Build lwt with current version of dune
# $ nix build .#revdeps.x86_64-linux.lwt --override-input revdeps-dune path:.
#
# Build base and core with dune 3.20.2
# $ nix build .#revdeps.x86_64-linux.{base,core} --override-input revdeps-dune github:ocaml/dune/3.20.2
#
# Build lwt with a specific commit (useful for bisection)
# $ nix build .#revdeps.x86_64-linux.lwt --override-input revdeps-dune github:ocaml/dune/a1b2c3d
revdeps = forAllSystems (
pkgs:
import ./nix/revdeps.nix {
inherit
nixpkgs
ocaml-overlays
revdeps-dune
pkgs
;
}
);
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;
[
file
jq
ripgrep
shellcheck
mercurial
unzip
coreutils
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: with oself; {
dune_3 = self.packages.${pkgs.stdenv.hostPlatform.system}.default;
fs-io = buildDunePackage {
pname = "fs-io";
inherit (dune_3) src version;
};
top-closure = buildDunePackage {
pname = "top-closure";
inherit (dune_3) src version;
};
dune-glob = osuper.dune-glob.overrideAttrs (o: {
propagatedBuildInputs = o.propagatedBuildInputs ++ [
pp
re
];
});
stdune = osuper.stdune.overrideAttrs (o: {
propagatedBuildInputs = o.propagatedBuildInputs ++ [
pp
fs-io
top-closure
];
});
}
);
}
)
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 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 test suite
'';
};
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.";
'';
};
rocq = makeDuneDevShell {
extraBuildInputs = pkgs: [
pkgs.ocamlPackages.rocq-core
pkgs.ocamlPackages.rocq-stdlib
];
meta.description = ''
Provides a minimal shell environment built purely from nixpkgs
that can run the Rocq testsuite.
'';
};
rocq-native =
let
ocaml414 = pkgs.ocamlPackages.ocamlPackages_4_14;
in
pkgs.mkShell {
inherit INSIDE_NIX;
nativeBuildInputs = (testNativeBuildInputs pkgs) ++ [
ocaml414.ocaml
ocaml414.findlib
];
buildInputs = [
ocaml414.csexp
ocaml414.pp
ocaml414.re
ocaml414.spawn
ocaml414.uutf
ocaml414.rocq-core
ocaml414.rocq-stdlib
];
meta.description = ''
Provides a minimal shell environment built purely from nixpkgs
that can build Dune and run the Rocq testsuite with native compilation.
'';
};
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.overrideAttrs (_: {
NIX_CFLAGS_COMPILE = "-std=gnu17";
}))
];
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: {
NIX_CFLAGS_COMPILE = "-std=gnu17";
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: {
NIX_CFLAGS_COMPILE = "-std=gnu17";
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.
'';
};
}
);
};
}