mirror of
https://github.com/agessaman/meshcore-packet-capture.git
synced 2026-04-20 23:23:37 +00:00
25 lines
653 B
Nix
25 lines
653 B
Nix
{
|
|
description = "A Python-based script to capture MeshCore Companion radio packets and send to MQTT for analysis.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
treefmt-nix.url = "github:numtide/treefmt-nix";
|
|
};
|
|
|
|
outputs = inputs @ {
|
|
flake-parts,
|
|
self,
|
|
...
|
|
}:
|
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
|
imports = [
|
|
inputs.treefmt-nix.flakeModule
|
|
./nix/packages.nix
|
|
./nix/shell.nix
|
|
./nix/nixos-module.nix
|
|
];
|
|
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
|
|
};
|
|
}
|
|
|