xorg.{utilmacros,xkeyboardconfig}: treat autotools as native inputs

Signed-off-by: Alexander V. Nikolaev <avn@avnik.info>

+2 -2
+2 -2
pkgs/servers/x11/xorg/overrides.nix
··· 468 transset = addMainProgram super.transset { }; 469 470 utilmacros = super.utilmacros.overrideAttrs (attrs: { # not needed for releases, we propagate the needed tools 471 - propagatedBuildInputs = attrs.propagatedBuildInputs or [] ++ [ automake autoconf libtool ]; 472 }); 473 474 viewres = addMainProgram super.viewres { }; ··· 725 ''; 726 in 727 xorg.xkeyboardconfig.overrideAttrs (old: { 728 - buildInputs = old.buildInputs ++ [ automake ]; 729 postPatch = lib.concatStrings (lib.mapAttrsToList patchIn layouts); 730 }); 731
··· 468 transset = addMainProgram super.transset { }; 469 470 utilmacros = super.utilmacros.overrideAttrs (attrs: { # not needed for releases, we propagate the needed tools 471 + propagatedNativeBuildInputs = attrs.propagatedNativeBuildInputs or [] ++ [ automake autoconf libtool ]; 472 }); 473 474 viewres = addMainProgram super.viewres { }; ··· 725 ''; 726 in 727 xorg.xkeyboardconfig.overrideAttrs (old: { 728 + nativeBuildInputs = old.nativeBuildInputs ++ [ automake ]; 729 postPatch = lib.concatStrings (lib.mapAttrsToList patchIn layouts); 730 }); 731