forked from ocaml/dune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
233 lines (223 loc) · 7.58 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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
ocamllsp = {
url = "git+https://github.com/ocaml/ocaml-lsp?submodules=1";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
melange = {
url = "github:melange-re/melange/1.0.0";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};
outputs =
{ self
, flake-utils
, nixpkgs
, ocamllsp
, melange
}@inputs:
let package = "dune";
in flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system}.appendOverlays [
(self: super: {
ocamlPackages = self.ocaml-ng.ocamlPackages_4_14;
})
melange.overlays.default
];
ocamlformat =
let
ocamlformat_version =
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 = strings.removePrefix prefix version_line;
in
builtins.replaceStrings [ "." ] [ "_" ] version;
in
builtins.getAttr ("ocamlformat_" + ocamlformat_version) pkgs;
testBuildInputs = with pkgs;
[ file mercurial ]
++ lib.optionals stdenv.isLinux [ strace ];
testNativeBuildInputs = with pkgs; [ nodejs-slim pkg-config opam ocamlformat ];
in
rec {
formatter = pkgs.nixpkgs-fmt;
packages = rec {
default = with pkgs; stdenv.mkDerivation {
pname = package;
version = "n/a";
src = ./.;
nativeBuildInputs = with ocamlPackages; [ ocaml findlib ];
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
strictDeps = true;
buildFlags = [ "release" ];
dontAddPrefix = true;
dontAddStaticConfigureFlags = true;
configurePlatforms = [ ];
installFlags = [ "PREFIX=${placeholder "out"}" "LIBDIR=$(OCAMLFIND_DESTDIR)" ];
};
dune = default;
};
devShells =
let
pkgs = nixpkgs.legacyPackages.${system}.appendOverlays [
(self: super: {
ocamlPackages = self.ocaml-ng.ocamlPackages_4_14;
})
melange.overlays.default
];
makeDuneDevShell =
{ extraBuildInputs ? [ ]
, meta ? null
, duneFromScope ? false
}:
let
slimPkgs =
if duneFromScope then
pkgs.extend
(self: super: {
ocamlPackages = super.ocamlPackages.overrideScope' (oself: osuper: {
dune_3 = packages.default;
});
})
else pkgs;
inherit (pkgs) writeScriptBin stdenv lib;
duneScript =
writeScriptBin "dune" ''
#!${stdenv.shell}
"$DUNE_SOURCE_ROOT"/_boot/dune.exe $@
'';
in
slimPkgs.mkShell {
shellHook = ''
export DUNE_SOURCE_ROOT=$PWD
'';
inherit meta;
nativeBuildInputs =
testNativeBuildInputs ++
lib.optionals (!duneFromScope) [ duneScript ];
inputsFrom = [ slimPkgs.ocamlPackages.dune_3 ];
buildInputs = testBuildInputs ++ (with slimPkgs.ocamlPackages; [
merlin
ppx_expect
ctypes
integers
mdx
cinaps
menhir
odoc
lwt
patdiff
] ++ extraBuildInputs);
};
in
{
doc =
pkgs.mkShell {
buildInputs = (with pkgs;
[
sphinx
sphinx-autobuild
python310Packages.sphinx-copybutton
python310Packages.sphinx-rtd-theme
]
);
meta.description = ''
Provides a shell environment suitable for building the Dune
documentation website (e.g. `make doc`).
'';
};
fmt =
pkgs.mkShell {
nativeBuildInputs = [ ocamlformat ];
inputsFrom = [ pkgs.dune_3 ];
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.ocamlPackages.melange
pkgs.ocamlPackages.rescript-syntax
];
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 {
nativeBuildInputs = lib.remove pkgs.ocamlformat testNativeBuildInputs;
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
meta.description = ''
provides a shell with just `opam` and minimal (external)
dependencies to run the testsuite.";
'';
};
coq =
pkgs.mkShell {
nativeBuildInputs = testNativeBuildInputs;
inputsFrom = [ pkgs.dune_3 ];
buildInputs = with pkgs; [
coq_8_16
coq_8_16.ocamlPackages.findlib
];
meta.description = ''
Provides a minimal shell environment built purely from nixpkgs
that can build Dune and the Coq testsuite.
'';
};
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 = (with pkgs; [
# dev tools
patdiff
ccls
]) ++ (with pkgs.ocamlPackages; [
ocamllsp.outputs.packages.${system}.default
pkgs.ocamlPackages.melange
rescript-syntax
js_of_ocaml-compiler
js_of_ocaml
utop
core_bench
mdx
odoc
ppx_expect
ctypes
]);
meta.description = ''
Provides a shell environment where `dune` is provided and built
using the source code in this repo.
'';
};
};
});
}