38 lines
791 B
Nix
38 lines
791 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
flake-utils.url = "github:numtide/flake-utils";
|
||
|
fenix.url = "github:nix-community/fenix";
|
||
|
};
|
||
|
|
||
|
outputs =
|
||
|
{
|
||
|
nixpkgs,
|
||
|
fenix,
|
||
|
flake-utils,
|
||
|
...
|
||
|
}:
|
||
|
flake-utils.lib.eachDefaultSystem (
|
||
|
system:
|
||
|
let
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
fx = fenix.packages.${system};
|
||
|
rust = fx.combine [
|
||
|
fx.stable.toolchain
|
||
|
fx.targets.thumbv6m-none-eabi.stable.rust-std
|
||
|
];
|
||
|
buildInputs = [
|
||
|
rust
|
||
|
pkgs.cargo-deny
|
||
|
pkgs.rust-analyzer
|
||
|
pkgs.probe-rs
|
||
|
];
|
||
|
in
|
||
|
{
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
buildInputs = buildInputs;
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|