tls/shell.nix
2024-06-29 15:53:00 +02:00

9 lines
154 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
buildInputs = with pkgs; [
];
RUST_BACKTRACE = 1;
packages = (with pkgs; [
wireshark
]);
}