dev-templates/ocaml/flake.nix
Luc Perkins bf45826289
fmt
2022-08-20 14:47:43 +03:00

30 lines
757 B
Nix

{
description = "A Nix-flake-based OCaml development environment";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
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
'';
};
};
});
}