Skip to content

Commit 102ce36

Browse files
authored
nix: remove 5.1 (#1484)
Signed-off-by: Rudi Grinberg <[email protected]>
1 parent ef898fb commit 102ce36

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

flake.nix

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
url = "github:ocaml/merlin/502";
1111
flake = false;
1212
};
13-
merlin5_1 = {
14-
url = "github:ocaml/merlin/501";
15-
flake = false;
16-
};
1713
};
1814

1915
outputs = { self, flake-utils, nixpkgs, ... }@inputs:
@@ -138,10 +134,8 @@
138134
pkgsWithoutOverlays = (import nixpkgs { inherit system; });
139135
makeNixpkgs = ocaml: merlin:
140136
pkgsWithoutOverlays.appendOverlays [ (ocamlVersionOverlay ocaml) (overlay merlin) ];
141-
pkgs_5_1 = makeNixpkgs "ocamlPackages_5_1" inputs.merlin5_1;
142137
pkgs_5_2 = makeNixpkgs "ocamlPackages_5_2" inputs.merlin5_2;
143138
pkgs_5_3 = makeNixpkgs "ocamlPackages_5_3" inputs.merlin5_3;
144-
localPackages_5_1 = makeLocalPackages pkgs_5_1;
145139
localPackages_5_2 = makeLocalPackages pkgs_5_2;
146140
localPackages_5_3 = makeLocalPackages pkgs_5_3;
147141
devShell = localPackages: nixpkgs:
@@ -154,15 +148,12 @@
154148
in {
155149
packages = (localPackages_5_3 // {
156150
default = localPackages_5_3.ocaml-lsp;
157-
ocaml_5_1 = localPackages_5_1;
158-
ocaml_5_2 = localPackages_5_1;
151+
ocaml_5_2 = localPackages_5_2;
159152
});
160153

161154
devShells = {
162155
default = devShell localPackages_5_3 pkgs_5_3;
163156

164-
ocaml5_1 = devShell localPackages_5_1 pkgs_5_1;
165-
166157
ocaml5_2 = devShell localPackages_5_2 pkgs_5_2;
167158

168159
release = pkgsWithoutOverlays.mkShell {

0 commit comments

Comments
 (0)