nix flake?
This commit is contained in:
parent
fb2a0ca4c3
commit
e390c2161d
1 changed files with 14 additions and 0 deletions
14
default.nix
Normal file
14
default.nix
Normal 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"
|
||||
'';
|
||||
}
|
||||
|
Loading…
Reference in a new issue