Add devshell with bpftools and bpftop

This commit is contained in:
Pim Kunis 2024-12-24 16:50:16 +01:00
parent 2af8823f2c
commit 066d9972cc
3 changed files with 5 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

1
.gitignore vendored
View file

@ -1 +1,2 @@
result result
.direnv

View file

@ -12,6 +12,9 @@
in in
{ {
packages.dropworld = pkgs.callPackage ./dropworld {}; packages.dropworld = pkgs.callPackage ./dropworld {};
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [bpftools bpftop];
};
} }
); );
} }