From b401d873298535ac53c012aa1cb9fa59301911ac Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 12 Jan 2019 14:10:39 +0000 Subject: afl-qemu: remove unnecessary build dependencies: this is a minimal build of qemu --- pkgs/tools/security/afl/qemu.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'pkgs') diff --git a/pkgs/tools/security/afl/qemu.nix b/pkgs/tools/security/afl/qemu.nix index a007eb3913dbe..9e0f19361fb01 100644 --- a/pkgs/tools/security/afl/qemu.nix +++ b/pkgs/tools/security/afl/qemu.nix @@ -1,7 +1,5 @@ -{ stdenv, fetchurl, afl, python2, zlib, pkgconfig, glib, ncurses, perl -, attr, libcap, vde2, texinfo, libuuid, flex, bison, lzo, snappy -, libaio, libcap_ng, gnutls, pixman, autoconf -, writeText +{ stdenv, fetchurl, afl, python2, zlib, pkgconfig, glib, perl +, texinfo, libuuid, flex, bison, pixman, autoconf }: with stdenv.lib; @@ -41,9 +39,8 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - zlib glib pixman ncurses attr libcap - vde2 libuuid lzo snappy libcap_ng gnutls - ] ++ optionals (stdenv.isLinux) [ libaio ]; + zlib glib pixman libuuid + ]; enableParallelBuilding = true; @@ -63,9 +60,9 @@ stdenv.mkDerivation rec { "--disable-gtk" "--disable-sdl" "--disable-vnc" + "--disable-kvm" "--target-list=${cpuTarget}" "--enable-pie" - "--enable-kvm" "--sysconfdir=/etc" "--localstatedir=/var" ]; -- cgit 1.4.1 From 038b2f5e9f34060dfbbdbab9b764817d21a6687e Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Wed, 10 Apr 2019 22:13:56 +0100 Subject: afl: add self to maintainers list --- pkgs/tools/security/afl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkgs') diff --git a/pkgs/tools/security/afl/default.nix b/pkgs/tools/security/afl/default.nix index c90d031e989bb..2ee0c478212c0 100644 --- a/pkgs/tools/security/afl/default.nix +++ b/pkgs/tools/security/afl/default.nix @@ -69,7 +69,7 @@ let homepage = "http://lcamtuf.coredump.cx/afl/"; license = stdenv.lib.licenses.asl20; platforms = ["x86_64-linux" "i686-linux"]; - maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; + maintainers = with stdenv.lib.maintainers; [ thoughtpolice ris ]; }; }; in afl -- cgit 1.4.1