make progress

This commit is contained in:
nora 2024-06-29 15:53:00 +02:00
parent b4faf77116
commit eea717987d
11 changed files with 574 additions and 343 deletions

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
buildInputs = with pkgs; [
];
RUST_BACKTRACE = 1;
packages = (with pkgs; [
wireshark
]);
}