mirror of
https://github.com/Noltari/pico-uart-bridge.git
synced 2025-01-04 05:25:58 +00:00
26 lines
526 B
Nix
26 lines
526 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
flake-utils.url = "github:numtide/flake-utils";
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils, ... }:
|
||
|
flake-utils.lib.eachDefaultSystem (system:
|
||
|
let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
devShells.default = with pkgs; mkShell {
|
||
|
buildInputs = [
|
||
|
cmake
|
||
|
gcc-arm-embedded
|
||
|
python3
|
||
|
picotool
|
||
|
];
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|