-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
92 lines (84 loc) · 2.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
description = "OCaml P2P libraries";
inputs = {
blipPkgs.url = "github:p2pcollab/ocaml-blip/master";
urpsPkgs.url = "github:p2pcollab/ocaml-urps/master";
};
outputs = { self, nixpkgs, blipPkgs, urpsPkgs }:
let
supportedSystems = [
"x86_64-linux" "aarch64-linux" "armv7l-linux"
"x86_64-darwin" "aarch64-darwin"
];
supportedOcamlPackages = [
"ocamlPackages_4_10"
"ocamlPackages_4_11"
"ocamlPackages_4_12"
];
defaultOcamlPackages = "ocamlPackages_4_12";
forAllOcamlPackages = nixpkgs.lib.genAttrs (supportedOcamlPackages ++ [ "ocamlPackages" ]);
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor =
forAllSystems (system:
import nixpkgs {
inherit system;
overlays = [ self.overlay ];
});
in
{
overlay = final: prev:
with final;
let mkOcamlPackages = prevOcamlPackages:
with prevOcamlPackages;
let ocamlPackages = rec {
inherit ocaml;
inherit findlib;
inherit ocamlbuild;
inherit opam-file-format;
inherit buildDunePackage;
p2p =
buildDunePackage rec {
pname = "p2p";
version = "0.0.1";
src = self;
useDune2 = true;
doCheck = true;
nativeBuildInputs = with ocamlPackages; [
odoc
ounit
utop
];
buildInputs = with ocamlPackages; [
bloomf
bitv
blip
urps
fmt
lru
lwt
lwt_ppx
nocrypto
stdint
];
};
};
in ocamlPackages;
in
let allOcamlPackages =
forAllOcamlPackages (ocamlPackages:
mkOcamlPackages (ocaml-ng.${ocamlPackages}
// blipPkgs.packages.${system}.${ocamlPackages}
// urpsPkgs.packages.${system}.${ocamlPackages}));
in
allOcamlPackages // {
ocamlPackages = allOcamlPackages.${defaultOcamlPackages};
};
packages =
forAllSystems (system:
forAllOcamlPackages (ocamlPackages:
nixpkgsFor.${system}.${ocamlPackages}));
defaultPackage =
forAllSystems (system:
nixpkgsFor.${system}.ocamlPackages.p2p);
};
}