| Tim Windelschmidt | f6c2cd2 | 2025-07-09 22:13:55 +0200 | [diff] [blame] | 1 | { pkgs }: with pkgs; |
| 2 | if (!stdenv.hostPlatform.isStatic) then bison else | ||||
| 3 | bison.overrideAttrs (old: { | ||||
| 4 | # Check overrided file for more informations | ||||
| 5 | postPatch = '' | ||||
| 6 | cp ${./yacc.in} src/yacc.in | ||||
| 7 | ''; | ||||
| 8 | |||||
| 9 | env.BISON = "${builtins.placeholder "out"}/bin/bison"; | ||||
| 10 | }) | ||||