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
|
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
melange = {
url = "github:melange-re/melange/refs/tags/5.1.0-53";
inputs.nixpkgs.follows = "nixpkgs";
};
ocaml-overlays = {
url = "github:nix-ocaml/nix-overlays";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{ self
, flake-utils
, nixpkgs
, melange
, ocaml-overlays
}:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system}.appendOverlays [
ocaml-overlays.overlays.default
(self: super: {
ocamlPackages = super.ocaml-ng.ocamlPackages_5_3.overrideScope (oself: osuper: {
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" ];
});
})
];
dune-static-overlay = self: super: {
ocamlPackages = super.ocaml-ng.ocamlPackages_5_3.overrideScope (oself: osuper: {
dune_3 = osuper.dune_3.overrideAttrs (a: {
src = ./.;
preBuild = "ocaml boot/bootstrap.ml --static";
});
});
};
pkgs-static = nixpkgs.legacyPackages.${system}.appendOverlays [
ocaml-overlays.overlays.default
dune-static-overlay
];
add-experimental-configure-flags = pkg: pkg.overrideAttrs {
configureFlags =
[
"--pkg-build-progress" "enable"
"--lock-dev-tool" "enable"
"--portable-lock-dir" "enable"
];
};
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 unzip ]
++ 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
];
in
{
formatter = pkgs.nixpkgs-fmt;
packages = {
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 ];
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 = self.packages.${system}.default;
dune-static = pkgs-static.pkgsCross.musl64.ocamlPackages.dune;
dune-experimental = add-experimental-configure-flags self.packages.${system}.dune;
dune-static-experimental = add-experimental-configure-flags self.packages.${system}.dune-static;
};
devShells =
let
INSIDE_NIX = "true";
makeDuneDevShell =
{ extraBuildInputs ? (pkgs: [ ])
, meta ? null
, duneFromScope ? false
}:
let
pkgs' =
if duneFromScope then
pkgs.extend
(pself: psuper: {
ocamlPackages = psuper.ocamlPackages.overrideScope (oself: osuper: {
dune_3 = self.packages.${system}.default;
});
})
else pkgs;
inherit (pkgs') writeScriptBin stdenv;
duneScript =
writeScriptBin "dune" ''
#!${stdenv.shell}
"$DUNE_SOURCE_ROOT"/_boot/dune.exe $@
'';
in
pkgs'.mkShell {
shellHook = ''
export DUNE_SOURCE_ROOT=$PWD
'';
inherit meta;
nativeBuildInputs = (testNativeBuildInputs pkgs')
++ docInputs
++ [ duneScript ];
inputsFrom = [ pkgs'.ocamlPackages.dune_3 ];
buildInputs = testBuildInputs ++ (with pkgs'.ocamlPackages; [
ocaml-lsp
merlin
ocaml-index
ppx_expect
spawn
ctypes
integers
mdx
cinaps
menhir
odoc
lwt
patdiff
] ++ (extraBuildInputs pkgs'));
inherit INSIDE_NIX;
};
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 ];
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);
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 {
inherit INSIDE_NIX;
nativeBuildInputs = (testNativeBuildInputs pkgs);
# Coq requires OCaml 4.x
inputsFrom = [ pkgs.ocaml-ng.ocamlPackages_4_14.dune_3 ];
buildInputs = with pkgs; [
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.
'';
};
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
# test dependencies
git
which
curl
procps
]) ++ (with pkgs.ocamlPackages; [
pkgs.ocamlPackages.ocaml-lsp
pkgs.ocamlPackages.melange
js_of_ocaml-compiler
js_of_ocaml
utop
core_bench
]);
meta.description = ''
Provides a shell environment where `dune` is provided and built
using the source code in this repo.
'';
};
};
});
}
|