tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
qemu-afl: various cleanups
Jörg Thalheim
7 years ago
5da3d039
5a09820a
+8
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
afl
qemu.nix
+8
-6
pkgs/tools/security/afl/qemu.nix
···
36
--replace "../patches/afl-qemu-cpu-inl.h" "afl-qemu-cpu-inl.h"
37
'';
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 ];
0
0
45
46
enableParallelBuilding = true;
47
···
36
--replace "../patches/afl-qemu-cpu-inl.h" "afl-qemu-cpu-inl.h"
37
'';
38
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 ];
47
48
enableParallelBuilding = true;
49