Revert "patchelf_0_13: init at 0.13.1"

This reverts commit 3838a0a7e7ef2a3faebb908cbab58d75b513b51c.

This was previously used on aarch64-unknown-linux-musl, but now that
that platform has an up-to-date bootstrap and can build current
patchelf, there's no longer any need to keep this around.

-19
-18
pkgs/development/tools/misc/patchelf/0.13.nix
··· 1 - { stdenv, fetchurl, patchelf }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "patchelf"; 5 - version = "0.13.1"; 6 - 7 - src = fetchurl { 8 - url = "https://github.com/NixOS/${pname}/releases/download/${version}/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-OeiuzNdJXVTfCU0rSnwIAQ/3d3A2+q8k8o4Hd30VmOI="; 10 - }; 11 - 12 - setupHook = [ ./setup-hook.sh ]; 13 - 14 - # fails 8 out of 24 tests, problems when loading libc.so.6 15 - doCheck = stdenv.name == "stdenv-linux"; 16 - 17 - inherit (patchelf) meta; 18 - }
-1
pkgs/top-level/all-packages.nix
··· 19739 19739 parse-cli-bin = callPackage ../development/tools/parse-cli-bin { }; 19740 19740 19741 19741 patchelf = callPackage ../development/tools/misc/patchelf { }; 19742 - patchelf_0_13 = callPackage ../development/tools/misc/patchelf/0.13.nix { }; 19743 19742 19744 19743 patchelfUnstable = lowPrio (callPackage ../development/tools/misc/patchelf/unstable.nix { }); 19745 19744