We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{ description = "Description"; inputs = { # nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; flake-utils.url = "github:numtide/flake-utils"; vscoq.url = "github:coq-community/vscoq"; vscoq.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { self, nixpkgs, vscoq, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; devTools = with pkgs; [ bashInteractive coqPackages.coq coqPackages.mathcomp-ssreflect vscoq.packages.${system}.vscoq-language-server ]; in { devShell = pkgs.mkShell ({ buildInputs = devTools; }); } ); }
Fails at line
From mathcomp Require Import ssreflect.
Fixed by removing coq-8_18 from inputs and using coq from nixpkgs, not coq-8_18.
coq-8_18
inputs
coq
nixpkgs
Related #686.
The text was updated successfully, but these errors were encountered:
Closed by #717
Sorry, something went wrong.
No branches or pull requests
Fails at line
Fixed by removing
coq-8_18
frominputs
and usingcoq
fromnixpkgs
, notcoq-8_18
.Related #686.
The text was updated successfully, but these errors were encountered: