Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

qemu-afl: various cleanups

+8 -6
+8 -6
pkgs/tools/security/afl/qemu.nix
··· 36 36 --replace "../patches/afl-qemu-cpu-inl.h" "afl-qemu-cpu-inl.h" 37 37 ''; 38 38 39 - buildInputs = 40 - [ python2 zlib pkgconfig glib pixman ncurses perl attr libcap 41 - vde2 texinfo libuuid flex bison lzo snappy autoconf 42 - libcap_ng gnutls 43 - ] 44 - ++ optionals (hasSuffix "linux" stdenv.hostPlatform.system) [ libaio ]; 39 + nativeBuildInputs = [ 40 + python2 perl pkgconfig flex bison autoconf texinfo 41 + ]; 42 + 43 + buildInputs = [ 44 + zlib glib pixman ncurses attr libcap 45 + vde2 libuuid lzo snappy libcap_ng gnutls 46 + ] ++ optionals (stdenv.isLinux) [ libaio ]; 45 47 46 48 enableParallelBuilding = true; 47 49