diff --git a/shell.nix b/shell.nix index e69de29..439ef82 100644 --- a/shell.nix +++ b/shell.nix @@ -0,0 +1,11 @@ +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in +pkgs.mkShellNoCC { + packages = with pkgs; [ + hping + tcpdump + netcat + ]; +}