Revert "patchelf: use 0.13.x on aarch64+musl"

This reverts commit e22d0b49a9553861cdaee9f71b37db4baf2bb992.

No longer needed now that we have an up-to-date
aarch64-unknown-linux-musl bootstrap.

Since the original commit, patchelf_0_14 was renamed to
patchelfStable. There's no longer any need for it to have a name
other than "patchelf", but I've kept "patchelfStable" around as an
alias in case anybody's using it.

+3 -13
-5
pkgs/development/tools/misc/patchelf/0.13.nix
··· 1 1 { stdenv, fetchurl, patchelf }: 2 2 3 - # Note: this package is used for bootstrapping fetchurl, and thus 4 - # cannot use fetchpatch! All mutable patches (generated by GitHub or 5 - # cgit) that are needed here should be included directly in Nixpkgs as 6 - # files. 7 - 8 3 stdenv.mkDerivation rec { 9 4 pname = "patchelf"; 10 5 version = "0.13.1";
+1
pkgs/top-level/aliases.nix
··· 795 795 parity = openethereum; # Added 2020-08-01 796 796 partition-manager = libsForQt5.partitionmanager; # Added 2024-01-08 797 797 pash = throw "'pash' has been removed: abandoned by upstream. Use 'powershell' instead"; # Added 2023-09-16 798 + patchelfStable = patchelf; # Added 2024-01-25 798 799 pcsctools = pcsc-tools; # Added 2023-12-07 799 800 pdf2xml = throw "'pdf2xml' was removed: abandoned for years."; # Added 2023-10-22 800 801 peach = asouldocs; # Added 2022-08-28
+2 -8
pkgs/top-level/all-packages.nix
··· 19738 19738 19739 19739 parse-cli-bin = callPackage ../development/tools/parse-cli-bin { }; 19740 19740 19741 - patchelf = if with stdenv.buildPlatform; isAarch64 && isMusl then 19742 - patchelf_0_13 19743 - else 19744 - patchelfStable; 19745 - patchelf_0_13 = callPackage ../development/tools/misc/patchelf/0.13.nix { 19746 - patchelf = patchelfStable; 19747 - }; 19748 - patchelfStable = callPackage ../development/tools/misc/patchelf { }; 19741 + patchelf = callPackage ../development/tools/misc/patchelf { }; 19742 + patchelf_0_13 = callPackage ../development/tools/misc/patchelf/0.13.nix { }; 19749 19743 19750 19744 patchelfUnstable = lowPrio (callPackage ../development/tools/misc/patchelf/unstable.nix { }); 19751 19745