forked from HoTT/Coq-HoTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
41 lines (35 loc) · 1.23 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
{
description = "A Coq library for Homotopy Type Theory";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
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 = with coqPackages;
[ pkgs.dune_3 pkgs.ocaml ] ++ extraPackages ++ [ coq ];
};
in {
packages.default = pkgs.coqPackages.mkCoqDerivation {
pname = "hott";
version = "8.19";
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"; }; } { };
formatter = pkgs.nixpkgs-fmt;
});
}