-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
115 lines (104 loc) · 3.3 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
description = "Advent of code 2024 with OCaml";
inputs = {
systems.url = "github:nix-systems/default";
};
outputs = { self, nixpkgs, systems }:
let
lib = nixpkgs.lib;
eachSystem = lib.genAttrs (import systems);
in
{
packages = eachSystem (system:
let
legacyPackages = nixpkgs.legacyPackages.${system};
ocamlPackages = legacyPackages.ocamlPackages;
in
{
default = self.packages.${system}.advent_2024;
advent_2024 = ocamlPackages.buildDunePackage {
pname = "advent_2024";
version = "0.1.0";
duneVersion = "3";
src = ./.;
buildInputs = [
ocamlPackages.core
ocamlPackages.core_unix
ocamlPackages.async
ocamlPackages.ppx_let
ocamlPackages.ppx_expect
];
strictDeps = true;
};
});
checks = eachSystem (system:
let
legacyPackages = nixpkgs.legacyPackages.${system};
ocamlPackages = legacyPackages.ocamlPackages;
in
{
advent_2024 =
let
patchDuneCommand =
let
subcmds = [ "build" "test" "runtest" "install" ];
in
lib.replaceStrings
(lib.lists.map (subcmd: "dune ${subcmd}") subcmds)
(lib.lists.map (subcmd: "dune ${subcmd} --display=short") subcmds);
in
self.packages.${system}.advent_2024.overrideAttrs
(oldAttrs: {
name = "check-${oldAttrs.name}";
doCheck = true;
buildPhase = patchDuneCommand oldAttrs.buildPhase;
checkPhase = patchDuneCommand oldAttrs.checkPhase;
# installPhase = patchDuneCommand oldAttrs.checkPhase;
});
dune-fmt = legacyPackages.runCommand "check-dune-fmt"
{
nativeBuildInputs = [
ocamlPackages.dune_3
ocamlPackages.ocaml
legacyPackages.ocamlformat
];
}
''
echo "checking dune and ocaml formatting"
dune build \
--display=short \
--no-print-directory \
--root="${./.}" \
--build-dir="$(pwd)/_build" \
@fmt
touch $out
'';
nixpkgs-fmt = legacyPackages.runCommand "check-nixpkgs-fmt"
{ nativeBuildInputs = [ legacyPackages.nixpkgs-fmt ]; }
''
echo "checking nix formatting"
nixpkgs-fmt --check ${./.}
touch $out
'';
});
devShells = eachSystem (system:
let
legacyPackages = nixpkgs.legacyPackages.${system};
ocamlPackages = legacyPackages.ocamlPackages;
in
{
default = legacyPackages.mkShell {
packages = [
legacyPackages.nixpkgs-fmt
legacyPackages.ocamlformat
legacyPackages.fswatch
ocamlPackages.ocaml-lsp
ocamlPackages.utop
];
inputsFrom = [
self.packages.${system}.advent_2024
];
};
});
};
}