-
Notifications
You must be signed in to change notification settings - Fork 2
/
flake.nix
89 lines (74 loc) · 2.23 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
{
description = "It's a RANCID^WOxidized replacement!";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
utils.url = "github:numtide/flake-utils";
advisory-db = {
url = "github:rustsec/advisory-db";
flake = false;
};
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-compat.follows = "flake-compat";
inputs.flake-utils.follows = "utils";
};
};
outputs = {
self,
advisory-db,
crane,
nixpkgs,
utils,
...
}:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
craneLib = crane.lib.${system};
src = craneLib.cleanCargoSource ./.;
cargoArtifacts = craneLib.buildDepsOnly {
inherit src; pname = "rusted-deps";
};
rusted = craneLib.buildPackage {
inherit src cargoArtifacts;
};
in
rec {
checks = {
inherit rusted;
rusted-clippy = craneLib.cargoClippy {
inherit src cargoArtifacts;
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
};
rusted-doc = craneLib.cargoDoc { inherit src cargoArtifacts; };
rusted-fmt = craneLib.cargoFmt { inherit src cargoArtifacts; };
rusted-audit = craneLib.cargoAudit { inherit src cargoArtifacts advisory-db; };
};
packages.default = pkgs.runCommandLocal "rusted" {} ''
mkdir -vp $out/{bin,etc/systemd/system}
ln -sf ${rusted}/bin/rusted $out/bin/rusted
cp -v ${./etc}/rusted.{service,timer} $out/etc/systemd/system
cp -vr ${./expect_scripts} $out/expect_scripts
'';
apps.default = utils.lib.mkApp { drv = packages.default; };
devShells.default = pkgs.mkShell {
inputsFrom = builtins.attrValues self.checks;
nativeBuildInputs = with pkgs; [
cargo
clippy
pre-commit
rustc
rustfmt
expect
rust-analyzer
];
RUST_SRC_PATH = pkgs.rustPlatform.rustLibSrc;
};
}
);
}