ccze: move autoconf to nativeBuildInputs

This commit is contained in:
Sandro Jäckel 2021-10-12 19:58:29 +02:00
parent 501884ff7d
commit f1ed3ba54c
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

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