forked from HoTT/Coq-HoTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
52 lines (45 loc) · 1.33 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
description = "A Coq library for Homotopy Type Theory";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/master";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
makeDevShell = { coq ? pkgs.coq }:
let
coqPackages = pkgs.mkCoqPackages coq // {
__attrsFailEvaluation = true;
};
in
{ extraPackages ? [ coqPackages.coq-lsp ] }:
pkgs.mkShell {
buildInputs =
[ pkgs.dune_3 pkgs.ocaml ] ++ extraPackages ++ [ coq ];
};
in
{
packages.default = pkgs.coqPackages.mkCoqDerivation {
pname = "hott";
version = "8.20";
src = self;
useDune = true;
};
devShells.default =
makeDevShell
{ coq = pkgs.coq_8_20; }
{ };
devShells.coq_8_19 =
makeDevShell
{ coq = pkgs.coq_8_19; }
{ };
# To use, pass --impure to nix develop
devShells.coq_master =
makeDevShell
{ coq = pkgs.coq.override { version = "master"; }; }
{ extraPackages = [ ]; };
formatter = pkgs.nixpkgs-fmt;
});
}