spark2014: fix incomplete install (#208830)

The previous installPhase was only using `make install`, while the real
target needed is `make install-all`. This installs many missing tools
under `$out/libexec/`, such as the missing `gnatwhy3` binary, which was
the root cause of #208830.

With this, gnatprove can now successfully discharge and prove things
with solvers like Z3, etc.

And, because it also includes `why3server`, we don't need to use
wrapProgram on it anymore, either!

Closes #208830

Signed-off-by: Austin Seipp <aseipp@pobox.com>

+2 -5
+2 -5
pkgs/development/libraries/ada/spark2014/default.nix
··· 5 5 , gnatcoll-core 6 6 , gprbuild 7 7 , python3 8 - , why3 9 8 , ocaml 10 9 , ocamlPackages 11 10 , makeWrapper ··· 53 52 make setup 54 53 ''; 55 54 56 - postInstall = '' 55 + installPhase = '' 56 + make install-all 57 57 cp -a ./install/. $out 58 - # help gnatprove to locate why3server 59 - wrapProgram "$out/bin/gnatprove" \ 60 - --prefix PATH : "${why3}/lib/why3" 61 58 ''; 62 59 63 60 meta = with lib; {