ccze: move autoconf to nativeBuildInputs

main
Sandro Jäckel 3 years ago
parent 501884ff7d
commit f1ed3ba54c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 9
      pkgs/tools/misc/ccze/default.nix

@ -11,9 +11,14 @@ stdenv.mkDerivation rec {
hash = "sha256-LVwmbrq78mZcAEuAqjXTqLE5we83H9mcMPtxQx2Tn/c=";
};
buildInputs = [ autoconf ncurses pcre ];
nativeBuildInputs = [ autoconf ];
preConfigure = "autoheader && autoconf ";
buildInputs = [ ncurses pcre ];
preConfigure = ''
autoheader
autoconf
'';
meta = with lib; {
description = "Fast, modular log colorizer";

Loading…
Cancel
Save