mirror of
https://github.com/Noratrieb/tls.git
synced 2026-01-14 08:35:03 +01:00
9 lines
154 B
Nix
9 lines
154 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
|
|
];
|
|
RUST_BACKTRACE = 1;
|
|
packages = (with pkgs; [
|
|
wireshark
|
|
]);
|
|
}
|