Merge pull request #187081 from amjoseph-nixpkgs/pr/patchelf/dropPatchDueToBump

patchelf: drop patch due to version bump
This commit is contained in:
Jörg Thalheim 2022-08-17 09:59:30 +01:00 committed by GitHub
commit 8516f3ec92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,15 +16,6 @@ stdenv.mkDerivation rec {
strictDeps = true;
patches =
# This patch fixes a MIPS-specific bug in patchelf; we want Hydra
# to generate a bootstrap-files tarball for MIPS that includes
# this fix. The patches below can be dropped on the next version bump.
lib.optionals stdenv.targetPlatform.isMips [
# https://github.com/NixOS/patchelf/pull/380
./patches/380.patch
];
setupHook = [ ./setup-hook.sh ];
enableParallelBuilding = true;