-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathflake.nix
More file actions
71 lines (60 loc) · 2.25 KB
/
flake.nix
File metadata and controls
71 lines (60 loc) · 2.25 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
description = "Functions and sets with extensional reasoning";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nix-github-actions.url = "github:nix-community/nix-github-actions";
nix-github-actions.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs@{ self, flake-parts, nix-github-actions, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
# To import a flake module
# 1. Add foo to inputs
# 2. Add foo as a parameter to the outputs function
# 3. Add here: foo.flakeModule
];
systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
perSystem = { config, self', inputs', pkgs, system, ... }: {
# Per-system attributes can be defined here. The self' and inputs'
# module parameters provide easy access to attributes of the same
# system.
_module.args.pkgs = import self.inputs.nixpkgs {
inherit system;
overlays = [
self.overlays.default
];
config = { };
};
devShells.default = pkgs.mkShell {
propagatedBuildInputs = [
pkgs.coqPackages.coq-lsp
];
inputsFrom = [
self'.packages.default
];
};
# Equivalent to inputs'.nixpkgs.legacyPackages.hello;
packages.default = pkgs.coqPackages.extructures;
checks.default = self'.packages.default;
};
flake = {
# The usual flake attributes can be defined here, including system-
# agnostic ones like nixosModule and system-enumerating ones, although
# those are more easily expressed in perSystem.
githubActions = nix-github-actions.lib.mkGithubMatrix {
checks = inputs.nixpkgs.lib.getAttrs
[ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ]
self.checks;
};
overlays.default = final: prev: {
coqPackages = prev.coqPackages.overrideScope (final: prev: {
extructures = prev.lib.overrideCoqDerivation {
defaultVersion = "dev";
release.dev.src = ./.;
} prev.extructures;
});
};
};
};
}