-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
92 lines (77 loc) · 2.39 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
{
description = "Bender the serial port bender";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
hedronSrc = {
url = "github:cyberus-technology/hedron";
flake = false;
};
pre-commit-hooks-nix = {
url = "github:hercules-ci/pre-commit-hooks.nix/flakeModule";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ self, nixpkgs, flake-compat, hedronSrc, flake-parts, pre-commit-hooks-nix }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
];
imports = [
inputs.pre-commit-hooks-nix.flakeModule
];
perSystem = { config, pkgs, ... }: {
packages = rec {
bender = pkgs.callPackage ./nix/build.nix { };
bender-debug = bender.override { buildType = "Debug"; };
default = bender;
};
checks =
let
# Hedron is not a flake. If we import its default.nix, this
# fails, because it relies on impure evaluation. We work
# around this issue by passing our nixpkgs along.
hedron = (import "${hedronSrc}/nix/release.nix" {
sources = null;
inherit pkgs;
}).hedron.builds.default-release;
in
{
bender-tests =
pkgs.callPackage ./nix/tests.nix {
inherit hedron;
bender = config.packages.bender;
};
bender-tests-debug =
pkgs.callPackage ./nix/tests.nix {
inherit hedron;
bender = config.packages.bender-debug;
};
};
pre-commit.settings = {
hooks = {
nixpkgs-fmt.enable = true;
clang-format = {
enable = true;
types_or = [ "c" "c++" ];
};
};
};
devShells.default = pkgs.mkShell {
inputsFrom = [ config.packages.bender ];
packages = [ pkgs.cmakeCurses pkgs.nixfmt ];
hardeningDisable = [ "all" ];
shellHook = ''
${config.pre-commit.installationScript}
'';
};
};
flake = {
overlays.default = import ./nix/overlay.nix;
};
};
}