1with import <nixpkgs> {};
2
3pkgs.mkShell {
4 nativeBuildInputs = with pkgs; [
5 aflplusplus
6 ];
7
8 hardeningDisable = [ "all" ];
9}