helix: remove grammar source (#170683)

not needed at runtime, bloats the package closure unnecessarily

authored by zowoq and committed by GitHub d40b56dd 1bff69d3

+3
+3
pkgs/applications/editors/helix/default.nix
··· 17 nativeBuildInputs = [ makeWrapper ]; 18 19 postInstall = '' 20 mkdir -p $out/lib 21 cp -r runtime $out/lib 22 '';
··· 17 nativeBuildInputs = [ makeWrapper ]; 18 19 postInstall = '' 20 + # not needed at runtime 21 + rm -r runtime/grammars/sources 22 + 23 mkdir -p $out/lib 24 cp -r runtime $out/lib 25 '';