init shell
This commit is contained in:
commit
33488d8073
2 changed files with 14 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/serve/config.txt
|
||||
/logs
|
||||
12
shell.nix
Normal file
12
shell.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.mkShell {
|
||||
name = "junos-testing";
|
||||
packages = [
|
||||
(pkgs.python3.withPackages (p: [
|
||||
p.scapy
|
||||
p.tqdm
|
||||
p.ipython
|
||||
p.libpcap
|
||||
]))
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue