pico-uart-bridge/flake.nix
2024-10-19 13:13:47 -07:00

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
];
};
}
);
}