blob: 8b2245eb6406e045e4d5431a254a38f9eff98ba1 [file] [log] [blame]
{ pkgs }: with pkgs;
if (!stdenv.hostPlatform.isStatic) then bison else
bison.overrideAttrs (old: {
# Check overrided file for more informations
postPatch = ''
cp ${./yacc.in} src/yacc.in
'';
env.BISON = "${builtins.placeholder "out"}/bin/bison";
})