-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
71 lines (68 loc) · 1.95 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
{
description = "IPL replacement modchip for the Nintendo GameCube";
inputs = {
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
systems.flake = false;
rust-overlay.url = "github:oxalica/rust-overlay";
};
outputs = { ... } @ inputs: inputs.flake-parts.lib.mkFlake {
inherit inputs;
} ({ config, flake-parts-lib, getSystem, inputs, lib, options, ... }:
let
rootConfig = config;
rootOptions = options;
in
{
_file = ./flake.nix;
imports = [ ];
config.perSystem = { config, inputs', nixpkgs, options, pkgs, system, ... }:
let
systemConfig = config;
systemOptions = options;
in
{
_file = ./flake.nix;
config = {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
(import inputs.rust-overlay)
];
config = { };
};
devShells.default = pkgs.callPackage
({ mkShell
, rust-bin
, flip-link
, probe-rs
, elf2uf2-rs
}: mkShell {
name = "cubane";
nativeBuildInputs = [
# RTIC 2.0 currently requires nightly
(rust-bin.nightly.latest.default.override {
extensions = [
"rust-analyzer"
"rust-src"
];
targets = [ "thumbv6m-none-eabi" ];
})
flip-link
probe-rs
elf2uf2-rs
];
})
{ };
};
};
config.systems = import inputs.systems;
});
}