Skip to content

Commit c8f063f

Browse files
committed
Updating nix flakes
1 parent e1e89f4 commit c8f063f

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

flake.nix

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,29 @@
55

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

8-
<<<<<<< HEAD
98
coq-8_18 = {
109
type = "github";
1110
owner = "coq";
1211
repo = "coq";
1312
ref = "V8.18.0";
1413
};
1514

15+
coq-8_19 = {
16+
type = "github";
17+
owner = "coq";
18+
repo = "coq";
19+
ref = "V8.19.0";
20+
};
21+
1622
coq-8_18.inputs.nixpkgs.follows = "nixpkgs";
17-
=======
18-
coq-master = { url = "github:coq/coq/fbaea89860348ca2b2ca485e52df7215bea27746"; }; # Should be kept in sync with PIN_COQ in CI workflow
19-
coq-master.inputs.nixpkgs.follows = "nixpkgs";
20-
>>>>>>> coq-master
23+
coq-8_19.inputs.nixpkgs.follows = "nixpkgs";
2124

2225
};
2326

24-
outputs = { self, nixpkgs, flake-utils, coq-8_18 }:
27+
outputs = { self, nixpkgs, flake-utils, coq-8_19 }:
2528
flake-utils.lib.eachDefaultSystem (system:
2629

27-
let coq = coq-8_18.defaultPackage.${system}; in
30+
let coq = coq-8_19.defaultPackage.${system}; in
2831
rec {
2932

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

0 commit comments

Comments
 (0)