-
Notifications
You must be signed in to change notification settings - Fork 428
/
flake.nix
31 lines (29 loc) · 1011 Bytes
/
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
{
description = "Nix Flake for ReasonML";
inputs.nix-filter.url = "github:numtide/nix-filter";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nixpkgs = {
url = "github:nix-ocaml/nix-overlays";
inputs.flake-utils.follows = "flake-utils";
};
outputs = { self, nixpkgs, flake-utils, nix-filter }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages."${system}".extend (self: super: {
ocamlPackages = super.ocaml-ng.ocamlPackages_5_3;
});
packages = pkgs.callPackage ./nix { nix-filter = nix-filter.lib; };
in
{
packages = packages // { default = packages.reason; };
devShells = {
default = pkgs.callPackage ./nix/shell.nix {
reason = self.packages.${system}.default;
};
release = pkgs.callPackage ./nix/shell.nix {
reason = self.packages.${system}.default;
release-mode = true;
};
};
});
}