mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
autoconf213: move 'm4' and 'perl' to nativeBuildInputs (strictDeps = true)
Without the change `strictDeps = true` build fails as: $ nix build --impure --expr 'with import ./. {}; autoconf213.overrideAttrs (oa: { strictDeps = true;})' Error: Autoconf requires GNU m4 1.1 or later
This commit is contained in:
parent
384d446910
commit
42091a7b8b
@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "07krzl4czczdsgzrrw9fiqx35xcf32naf751khg821g5pqv12qgh";
|
||||
};
|
||||
|
||||
buildInputs = [ m4 perl ];
|
||||
nativeBuildInputs = [ m4 perl ];
|
||||
strictDeps = true;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user