Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

flexcpp: patch all shebangs & fix installation

Using the original build recipe would result in an output
without the actual flexcpp binary.

(cherry picked from commit a8556bd5d75fbe30d8a55b053de5a37f0285cfe2)

+2 -6
+2 -6
pkgs/development/tools/parsing/flexc++/default.nix
··· 18 18 19 19 postPatch = '' 20 20 substituteInPlace INSTALL.im --replace /usr $out 21 - patchShebangs ./build 21 + patchShebangs . 22 22 ''; 23 23 24 24 buildPhase = '' ··· 28 28 ''; 29 29 30 30 installPhase = '' 31 - ./build install man 32 - ./build install manual 33 - ./build install program 34 - ./build install skel 35 - ./build install std 31 + ./build install x 36 32 ''; 37 33 38 34 meta = with stdenv.lib; {