lol

bison: explicitly set strictDeps

see the comment

Artturin 62e002d1 9069477b

+5
+5
pkgs/development/tools/parsing/bison/default.nix
··· 18 18 # Otherwise tests fail due to incorrect unicode symbol oconversion. 19 19 configurePlatforms = [ "build" "host" ]; 20 20 21 + # there's a /bin/sh shebang in bin/yacc which when no strictDeps is patched with the build stdenv shell 22 + # however when cross-compiling it would still be patched with the build stdenv shell which would be wrong 23 + # cannot add bash to buildInputs due to infinite recursion 24 + strictDeps = stdenv.hostPlatform != stdenv.buildPlatform; 25 + 21 26 nativeBuildInputs = [ m4 perl ] ++ lib.optional stdenv.isSunOS help2man; 22 27 propagatedBuildInputs = [ m4 ]; 23 28