Skip to content

Commit

Permalink
fix: nixpkgs commit url
Browse files Browse the repository at this point in the history
  • Loading branch information
rtetley committed Feb 12, 2025
1 parent 8dba43a commit 1d940f0
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 46 deletions.
74 changes: 38 additions & 36 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,26 @@

inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs?rev=4221c236f296269b5b2e2a6b733ebcd4a2e05f90";

coq-master = { url = "github:coq/coq/9d13cf5137c82610893241ac3c5c756f01c2aaa1"; }; # Should be kept in sync with PIN_COQ in CI workflow
coq-master.inputs.nixpkgs.follows = "nixpkgs";
rocq-master = { url = "github:coq/coq/9d13cf5137c82610893241ac3c5c756f01c2aaa1"; }; # Should be kept in sync with PIN_COQ in CI workflow
rocq-master.inputs.nixpkgs.follows = "nixpkgs";

};

outputs = {
self,
nixpkgs,
flake-utils,
coq-master,
rocq-master,
}:
flake-utils.lib.eachDefaultSystem (system: let
name = "vscoq-client";
vscodeExtPublisher = "maximedenes";
vscodeExtName = "vscoq";
vscodeExtUniqueId = "maximedenes.vscoq";
vscoq_version = "2.2.3";
coq = coq-master.packages.${system};
rocq = rocq-master.packages.${system};
in rec {
formatter = nixpkgs.legacyPackages.${system}.alejandra;

Expand Down Expand Up @@ -49,7 +50,7 @@
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
pkgs.adwaita-icon-theme
wrapGAppsHook
ocaml
findlib
Expand Down Expand Up @@ -92,7 +93,7 @@
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
pkgs.adwaita-icon-theme
wrapGAppsHook
ocaml
yojson
Expand Down Expand Up @@ -135,7 +136,7 @@
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
pkgs.adwaita-icon-theme
wrapGAppsHook
ocaml
yojson
Expand Down Expand Up @@ -168,17 +169,17 @@
version = vscoq_version;
src = ./language-server;
nativeBuildInputs = [
coq
rocq
];
buildInputs =
[
coq
rocq
dune_3
]
++ (with coq.ocamlPackages; [
lablgtk3-sourceview3
glib
gnome.adwaita-icon-theme
pkgs.adwaita-icon-theme
wrapGAppsHook
ocaml
yojson
Expand Down

0 comments on commit 1d940f0

Please sign in to comment.