forked from fraidev/tornado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
36 lines (33 loc) · 1.04 KB
/
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
32
33
34
35
36
{
description = "Nix Flake";
inputs = {
nixpkgs.url = "github:nix-ocaml/nix-overlays";
flake-utils.url = "github:numtide/flake-utils";
nix-filter.url = "github:numtide/nix-filter";
ocaml-overlays.url = "github:nix-ocaml/nix-overlays";
ocaml-overlays.inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
outputs = { self, nixpkgs, ocaml-overlays, nix-filter, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = (ocaml-overlays.makePkgs {
inherit system;
extraOverlays = [ (import ./nix/overlay.nix) ];
}).extend
(self: super: { ocamlPackages = super.ocaml-ng.ocamlPackages_5_1; });
in let
tornado = pkgs.callPackage ./nix {
doCheck = true;
inherit nix-filter;
};
in rec {
packages = {
inherit tornado;
ocamlPackages = pkgs.ocaml-ng.ocamlPackages_5_1;
};
devShell = import ./nix/shell.nix { inherit pkgs tornado; };
});
}