-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
73 lines (66 loc) · 2.29 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
fenix.url = "github:nix-community/fenix";
devshell.url = "github:numtide/devshell";
flake-parts.url = "github:hercules-ci/flake-parts";
rust-manifest = {
url = "https://static.rust-lang.org/dist/2025-02-12/channel-rust-nightly.toml";
flake = false;
};
};
outputs = { self, nixpkgs, fenix, rust-manifest, devshell, flake-parts, ... } @ inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
devshell.flakeModule
];
systems = [
"x86_64-linux"
];
perSystem = { pkgs, system, ... }: let
rustpkg = (fenix.packages.${system}.fromManifestFile rust-manifest).completeToolchain;
fastchess = pkgs.callPackage ./nix/fastchess.nix { };
deps = with pkgs; rec {
dev = [
bacon
cloc
gnuplot
imhex
linuxKernel.packages.linux_6_6.perf
perf-tools
plantuml
timg
] ++ ci;
ci = [
cargo-insta
cargo-llvm-cov
cargo-mutants
cargo-nextest
cargo-udeps
clang
fastchess
just
libcxx
mold
rustpkg
stockfish
];
};
in {
packages = {
inherit fastchess;
ci = pkgs.writeShellApplication {
name = "ci";
runtimeInputs = deps.ci;
text = /* bash */ ''
just ci
'';
};
};
devshells.default = {
motd = ''Double double, toil and trouble.'';
packages = deps.dev;
};
};
};
}