diff --git a/pkgs/tools/security/zzuf/default.nix b/pkgs/tools/security/zzuf/default.nix index 5b30d5270df..edf5e846801 100644 --- a/pkgs/tools/security/zzuf/default.nix +++ b/pkgs/tools/security/zzuf/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config }: +{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }: stdenv.mkDerivation rec { pname = "zzuf"; @@ -11,10 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0li1s11xf32dafxq1jbnc8c63313hy9ry09dja2rymk9mza4x2n9"; }; - nativeBuildInputs = [ autoconf automake ]; - buildInputs = [ libtool pkg-config ]; - - preConfigure = "./bootstrap"; + nativeBuildInputs = [ pkg-config autoreconfHook ]; meta = with lib; { description = "Transparent application input fuzzer";