Created
February 3, 2025 09:12
-
-
Save Agnishom/8400f38314fdf2bb59093e8bda79c953 to your computer and use it in GitHub Desktop.
Simple Flake for Coq Environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "Attempt to use the flake from the VSCoq repository"; | |
inputs = { | |
flake-utils.url = "github:numtide/flake-utils"; | |
# Should be kept in sync with PIN_COQ in CI workflow | |
coq-master = { url = "github:coq/coq/d6dd8a618cbf628a6580c9a42db0cf5f44606bea"; }; | |
coq-master.inputs.nixpkgs.follows = "nixpkgs"; | |
vscoq-flake.url = "github:coq/vscoq"; | |
}; | |
outputs = { | |
self | |
, flake-utils | |
, coq-master | |
, nixpkgs | |
, vscoq-flake | |
}: | |
flake-utils.lib.eachDefaultSystem (system: { | |
packages = { | |
}; | |
devShells = { | |
# a shell containing just hello for now | |
default = | |
vscoq-flake.devShells.${system}.default; | |
}; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment