Commit f67b36ba authored by Alyssa Ross's avatar Alyssa Ross
Browse files

Revert "patchelf_0_13: init at 0.13.1"

This reverts commit 3838a0a7.

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.
parent f84fc976
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
{ stdenv, fetchurl, patchelf }:

stdenv.mkDerivation rec {
  pname = "patchelf";
  version = "0.13.1";

  src = fetchurl {
    url = "https://github.com/NixOS/${pname}/releases/download/${version}/${pname}-${version}.tar.bz2";
    sha256 = "sha256-OeiuzNdJXVTfCU0rSnwIAQ/3d3A2+q8k8o4Hd30VmOI=";
  };

  setupHook = [ ./setup-hook.sh ];

  # fails 8 out of 24 tests, problems when loading libc.so.6
  doCheck = stdenv.name == "stdenv-linux";

  inherit (patchelf) meta;
}
+0 −1
Original line number Diff line number Diff line
@@ -19739,7 +19739,6 @@ with pkgs;
  parse-cli-bin = callPackage ../development/tools/parse-cli-bin { };
  patchelf = callPackage ../development/tools/misc/patchelf { };
  patchelf_0_13 = callPackage ../development/tools/misc/patchelf/0.13.nix { };
  patchelfUnstable = lowPrio (callPackage ../development/tools/misc/patchelf/unstable.nix { });