-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
142 lines (124 loc) · 3.7 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
{
description = "adx";
inputs.nixpkgs.url = "github:msfjarvis/nixpkgs/nixpkgs-unstable";
inputs.systems.url = "github:msfjarvis/flake-systems";
inputs.advisory-db.url = "github:rustsec/advisory-db";
inputs.advisory-db.flake = false;
inputs.crane.url = "github:ipetkov/crane";
inputs.devshell.url = "github:numtide/devshell";
inputs.devshell.inputs.nixpkgs.follows = "nixpkgs";
inputs.fenix.url = "github:nix-community/fenix";
inputs.fenix.inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.flake-utils.inputs.systems.follows = "systems";
inputs.flake-compat.url = "github:nix-community/flake-compat";
inputs.flake-compat.flake = false;
outputs =
{
nixpkgs,
advisory-db,
crane,
devshell,
fenix,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ devshell.overlays.default ];
};
rustStable = (import fenix { inherit pkgs; }).fromToolchainFile {
file = ./rust-toolchain.toml;
sha256 = "sha256-AJ6LX/Q/Er9kS15bn9iflkUwcgYqRQxiOIL2ToVAXaU=";
};
craneLib = (crane.mkLib pkgs).overrideToolchain rustStable;
workspaceName = craneLib.crateNameFromCargoToml { cargoToml = ./adx/Cargo.toml; };
commonArgs = {
inherit (workspaceName) pname version;
src =
with pkgs.lib.fileset;
toSource {
root = ./.;
fileset = unions [
(fileFilter (file: file.hasExt "xml") ./.)
(fileFilter (file: file.hasExt "snap") ./.)
(craneLib.fileset.commonCargoSources ./.)
];
};
buildInputs = [ ];
nativeBuildInputs = [ ];
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
cargoToml = ./adx/Cargo.toml;
};
cargoArtifacts = craneLib.buildDepsOnly commonArgs;
adx-build = craneLib.cargoBuild (
commonArgs
// {
inherit cargoArtifacts;
CARGO_BUILD_RUSTFLAGS = "--cfg feature=\"nix-check\"";
}
);
adx = craneLib.buildPackage (
commonArgs
// {
cargoArtifacts = adx-build;
doCheck = false;
}
);
adx-clippy = craneLib.cargoClippy (
commonArgs
// {
inherit cargoArtifacts;
}
);
adx-fmt = craneLib.cargoFmt (commonArgs // { });
adx-audit = craneLib.cargoAudit (commonArgs // { inherit advisory-db; });
adx-nextest = craneLib.cargoNextest (
commonArgs
// {
cargoArtifacts = adx-build;
partitions = 1;
partitionType = "count";
CARGO_BUILD_RUSTFLAGS = "--cfg feature=\"nix-check\"";
}
);
in
{
checks = {
inherit
adx
adx-audit
adx-clippy
adx-fmt
adx-nextest
;
};
packages.default = adx;
apps.default = flake-utils.lib.mkApp { drv = adx; };
devShells.default = pkgs.devshell.mkShell {
bash = {
interactive = "";
};
env = [
{
name = "DEVSHELL_NO_MOTD";
value = 1;
}
];
packages = with pkgs; [
cargo-dist
cargo-insta
cargo-nextest
cargo-release
fenix.packages.${system}.rust-analyzer
oranda
rustStable
stdenv.cc
];
};
}
);
}