mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
qemu-afl: various cleanups
This commit is contained in:
parent
5a09820a13
commit
5da3d039d4
1 changed files with 8 additions and 6 deletions
|
@ -36,12 +36,14 @@ stdenv.mkDerivation rec {
|
|||
--replace "../patches/afl-qemu-cpu-inl.h" "afl-qemu-cpu-inl.h"
|
||||
'';
|
||||
|
||||
buildInputs =
|
||||
[ python2 zlib pkgconfig glib pixman ncurses perl attr libcap
|
||||
vde2 texinfo libuuid flex bison lzo snappy autoconf
|
||||
libcap_ng gnutls
|
||||
]
|
||||
++ optionals (hasSuffix "linux" stdenv.hostPlatform.system) [ libaio ];
|
||||
nativeBuildInputs = [
|
||||
python2 perl pkgconfig flex bison autoconf texinfo
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
zlib glib pixman ncurses attr libcap
|
||||
vde2 libuuid lzo snappy libcap_ng gnutls
|
||||
] ++ optionals (stdenv.isLinux) [ libaio ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue