sdcc: use nativeBuildInputs

Ref https://github.com/jtojnar/nixpkgs-hammering/blob/master/explanations/build-tools-in-build-inputs.md

+3 -1
+3 -1
pkgs/development/compilers/sdcc/default.nix
··· 17 17 sha256 = "042fxw5mnsfhpc0z9lxfsw88kdkm32pwrxacp88kj2n2dy0814a8"; 18 18 }; 19 19 20 - buildInputs = [ autoconf bison boost flex gputils texinfo zlib ]; 20 + buildInputs = [ boost gputils texinfo zlib ]; 21 + 22 + nativeBuildInputs = [ autoconf bison flex ]; 21 23 22 24 configureFlags = map (f: "--disable-${f}-port") excludedPorts; 23 25