Skip to content

Commit ae4b5d4

Browse files
committed
Fix ocaml version and minimize dependencies.
1 parent 2050ed9 commit ae4b5d4

File tree

2 files changed

+3
-73
lines changed

2 files changed

+3
-73
lines changed

flake.lock

+1-57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+2-16
Original file line numberDiff line numberDiff line change
@@ -5,40 +5,26 @@
55

66
flake-utils.url = "github:numtide/flake-utils";
77

8-
coq-8_18 = {
9-
type = "github";
10-
owner = "coq";
11-
repo = "coq";
12-
ref = "V8.18.0";
13-
};
14-
15-
coq-8_18.inputs.nixpkgs.follows = "nixpkgs";
16-
178
};
189

19-
outputs = { self, nixpkgs, flake-utils, coq-8_18 }:
10+
outputs = { self, nixpkgs, flake-utils }:
2011
flake-utils.lib.eachDefaultSystem (system:
2112

22-
let coq = coq-8_18.defaultPackage.${system}; in
2313
rec {
2414

2515
packages.default = self.packages.${system}.vscoq-language-server;
2616

2717
packages.vscoq-language-server =
2818
# Notice the reference to nixpkgs here.
2919
with import nixpkgs { inherit system; };
30-
20+
let ocamlPackages = ocaml-ng.ocamlPackages_4_14; in
3121
ocamlPackages.buildDunePackage {
3222
duneVersion = "3";
3323
pname = "vscoq-language-server";
3424
version = "2.0.3";
3525
src = ./language-server;
3626
buildInputs = [
3727
coq
38-
bash
39-
hostname
40-
python3
41-
time
4228
dune_3
4329
] ++ (with coq.ocamlPackages; [
4430
lablgtk3-sourceview3

0 commit comments

Comments
 (0)