This commit is contained in:
Omar Polo 2024-04-03 13:54:26 +00:00 committed by GitHub
commit 19075a1ea5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
];
}