-
Notifications
You must be signed in to change notification settings - Fork 17
/
flake.nix
46 lines (41 loc) · 1.25 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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/24.05";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
rust-flake.url = "github:juspay/rust-flake";
devour-flake.url = "github:srid/devour-flake";
devour-flake.flake = false;
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = import inputs.systems;
imports = [
inputs.rust-flake.flakeModules.default
inputs.rust-flake.flakeModules.nixpkgs
inputs.pre-commit-hooks.flakeModule
./nix/pre-commit.nix
./nix/rust.nix
];
perSystem = { pkgs, self', config, ... }: {
formatter = pkgs.nixpkgs-fmt;
devShells.default = pkgs.mkShell {
inputsFrom = [
self'.devShells.rust
config.pre-commit.devShell
];
# Add your devShell tools here clang-tidy ./sarif-fmt/tests/data/cpp.cpp
packages = with pkgs; [
git-cliff
zola
];
shellHook =
''
# For nixci
export DEVOUR_FLAKE=${inputs.devour-flake}
'';
};
};
};
}