emacs.pkgs.ada-mode: fix installPhase

The invocation of the install.sh script changed in 8.1.0 or 8.0 to no
longer accept the --prefix flag, instead the path needs to be given as
the first argument alone.
This commit is contained in:
sternenseemann 2023-11-22 14:25:40 +01:00
parent 7db5b159eb
commit 6a096e1499

View File

@ -98,7 +98,7 @@ self: let
'';
postInstall = (old.postInstall or "") + "\n" + ''
./install.sh --prefix=$out
./install.sh "$out"
'';
meta = old.meta // {