add shell.nix

This commit is contained in:
Omar Polo 2024-04-03 13:47:57 +00:00
parent 8aba5d8b21
commit dd0bb74b0f
1 changed files with 9 additions and 0 deletions

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
bison
];
buildInputs = with pkgs; [
libressl libevent
];
}