2022-08-13 17:10:46 +02:00
|
|
|
{
|
|
|
|
description = "A Nix-flake-based OCaml development environment";
|
|
|
|
|
2022-08-20 12:06:53 +02:00
|
|
|
inputs = {
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
|
|
};
|
2022-08-13 17:10:46 +02:00
|
|
|
|
2022-08-20 12:06:53 +02:00
|
|
|
outputs = { self, flake-utils, nixpkgs }:
|
|
|
|
flake-utils.lib.eachDefaultSystem (system:
|
2022-08-13 17:10:46 +02:00
|
|
|
let
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
inherit (pkgs) mkShell;
|
|
|
|
ocaml = pkgs.ocamlPackages.ocaml;
|
|
|
|
ocamlTools = with pkgs.ocamlPackages;
|
|
|
|
[ dune_3 odoc ] ++ (with pkgs; [ ocamlformat ]);
|
|
|
|
in {
|
|
|
|
devShells = {
|
|
|
|
default = mkShell {
|
|
|
|
buildInputs = [ ocaml ] ++ ocamlTools;
|
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
${ocaml}/bin/ocaml --version
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|