nix flake?

This commit is contained in:
Tristan Smith 2024-08-27 02:21:46 -04:00
parent fb2a0ca4c3
commit e390c2161d

14
default.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.gcc
pkgs.libpcap
];
# Set any environment variables if needed
shellHook = ''
echo "Environment set up for ip-reporter-c"
'';
}