jbake: fix sandbox build (#46363)

See https://hydra.nixos.org/build/80999410

Without a sandbox the `checkPhase` breaks with the following error:

```
/nix/store/i6vl5lwlz5jbkg4r6p340dwmj6fha3xq-stdenv-linux/setup: bin/jbake: /usr/bin/env: bad interpreter: No such file or directory
jbake did not return correct version
```

Running `patchShebangs` before fixes the issue.

Addresses #45960

authored by Maximilian Bosch and committed by xeji 6960a96a ca7391da

+2
+2
pkgs/development/tools/jbake/default.nix
··· 11 11 12 12 buildInputs = [ makeWrapper jre ]; 13 13 14 + postPatch = "patchShebangs ."; 15 + 14 16 installPhase = '' 15 17 mkdir -p $out 16 18 cp -vr * $out