dev-templates/ocaml/flake.nix

30 lines
757 B
Nix
Raw Normal View History

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 ]);
2022-08-20 13:47:43 +02:00
in
{
2022-08-13 17:10:46 +02:00
devShells = {
default = mkShell {
buildInputs = [ ocaml ] ++ ocamlTools;
shellHook = ''
${ocaml}/bin/ocaml --version
'';
};
};
});
}