-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
187 lines (160 loc) · 5.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
description = "pokem - Jack some (AI) heads into Matrix.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
nixpkgs-stable.follows = "nixpkgs";
};
};
crane.url = "github:ipetkov/crane";
flake-utils.url = "github:numtide/flake-utils";
fenix = {
# Needed because rust-overlay, normally used by crane, doesn't have llvm-tools for coverage
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.rust-analyzer-src.follows = "";
};
advisory-db = {
# Rust dependency security advisories
url = "github:rustsec/advisory-db";
flake = false;
};
# A faster nix flake check command
nix-fast-build = {
url = "github:Mic92/nix-fast-build";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {self, ...} @ inputs:
inputs.flake-utils.lib.eachDefaultSystem (system: let
pkgs = import inputs.nixpkgs {
inherit system;
};
inherit (pkgs) lib;
# Use the stable rust tools from fenix
fenixStable = inputs.fenix.packages.${system}.stable;
rustSrc = fenixStable.rust-src;
toolChain = fenixStable.completeToolchain;
# Use the toolchain with the crane helper functions
craneLib = (inputs.crane.mkLib pkgs).overrideToolchain toolChain;
# Clean the src to only have the Rust-relevant files
# src = let
# # We need to keep the yaml files because they are used for the build defaults
# yamlFilter = path: _type: builtins.match ".*defaults.yaml$" path != null;
# yamlOrCargo = path: type:
# (yamlFilter path type) || (craneLib.filterCargoSources path type);
# in
# lib.cleanSourceWith {
# src = craneLib.path ./.;
# filter = yamlOrCargo;
# };
src = ./.;
# Common arguments for mkCargoDerivation, a helper for the crane functions
# Arguments can be included here even if they aren't used, but we only
# place them here if they would otherwise show up in multiple places
commonArgs = {
inherit src cargoArtifacts;
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
openssl
sqlite
];
};
# Build only the cargo dependencies so we can cache them all when running in CI
cargoArtifacts = craneLib.buildDepsOnly commonArgs;
# Build the actual crate itself, reusing the cargoArtifacts
pokem = craneLib.buildPackage commonArgs;
in {
checks =
{
# Build the final package as part of `nix flake check` for convenience
inherit (self.packages.${system}) pokem;
# Run clippy (and deny all warnings) on the crate source
pokem-clippy =
craneLib.cargoClippy
(commonArgs
// {
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
});
# Check docs build successfully
pokem-doc = craneLib.cargoDoc commonArgs;
# Check formatting
pokem-fmt = craneLib.cargoFmt commonArgs;
# Run tests with cargo-nextest
# Note: This provides limited value, as tests are already run in the build
pokem-nextest = craneLib.cargoNextest commonArgs;
# Audit dependencies
crate-audit = craneLib.cargoAudit (commonArgs
// {
inherit (inputs) advisory-db;
});
}
// lib.optionalAttrs (system == "x86_64-linux") {
# Check code coverage with tarpaulin runs
pokem-tarpaulin = craneLib.cargoTarpaulin commonArgs;
}
// {
# Run formatting checks before commit
# Can be run manually with `pre-commit run -a`
pre-commit-check = inputs.pre-commit-hooks.lib.${system}.run {
src = ./.;
tools.rustfmt = toolChain;
hooks = {
alejandra.enable = true; # Nix formatting
prettier.enable = true; # Markdown formatting
rustfmt.enable = true; # Rust formatting
};
};
};
packages = rec {
inherit pokem;
default = pokem;
};
apps = rec {
default = pokem;
pokem = inputs.flake-utils.lib.mkApp {
drv = self.packages.${system}.pokem;
};
};
devShells.default = pkgs.mkShell {
name = "pokem";
shellHook = ''
${self.checks.${system}.pre-commit-check.shellHook}
echo ---------------------
task --list
echo ---------------------
'';
# Include the packages from the defined checks and packages
inputsFrom =
(builtins.attrValues self.checks.${system})
++ (builtins.attrValues self.packages.${system});
nativeBuildInputs = with pkgs; [
act # For running Github Actions locally
alejandra
deadnix
git-cliff
go-task
gum # Pretty printing in scripts
nodePackages.prettier
statix
# Code coverage
cargo-tarpaulin
# Speed up nix builds
inputs.nix-fast-build.packages.${system}.nix-fast-build
];
# Many tools read this to find the sources for rust stdlib
RUST_SRC_PATH = "${rustSrc}/lib/rustlib/src/rust/library";
};
})
// {
overlays.default = final: prev: {
pokem = self.packages.${final.system}.pokem;
};
homeManagerModules.default = import ./nix/home-manager.nix;
};
}