Skip to content

Instantly share code, notes, and snippets.

@Pitometsu
Created November 27, 2019 04:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pitometsu/351b52319832409b037c96e03bd6ab09 to your computer and use it in GitHub Desktop.
Save Pitometsu/351b52319832409b037c96e03bd6ab09 to your computer and use it in GitHub Desktop.
Coq environment
let
overlays = [
(self: super: with self; {
coq = coq_8_10;
coq_8_10 = (super.coq_8_10.override { buildIde = false; });
coqPackages = coqPackages_8_10;
coqPackages_8_10 = (super.coqPackages_8_10.overrideScope' (self: super: {
inherit coq;
}));
})
];
in
with import <nixpkgs> { inherit overlays; };
mkShell {
buildInputs = with coqPackages; [ coq ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment