patchelf_0_14: rename to patchelfStable

It was 0.15.x already, and r-ryantm keeps suggesting updates.
This commit is contained in:
Vladimír Čunát 2022-11-27 18:00:41 +01:00
parent 94a3d6ef91
commit ec045d118a
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -17534,11 +17534,11 @@ with pkgs;
patchelf = if with stdenv.buildPlatform; isAarch64 && isMusl then patchelf = if with stdenv.buildPlatform; isAarch64 && isMusl then
patchelf_0_13 patchelf_0_13
else else
patchelf_0_14; patchelfStable;
patchelf_0_13 = callPackage ../development/tools/misc/patchelf/0.13.nix { patchelf_0_13 = callPackage ../development/tools/misc/patchelf/0.13.nix {
patchelf = patchelf_0_14; patchelf = patchelfStable;
}; };
patchelf_0_14 = callPackage ../development/tools/misc/patchelf { }; patchelfStable = callPackage ../development/tools/misc/patchelf { };
patchelfUnstable = lowPrio (callPackage ../development/tools/misc/patchelf/unstable.nix { }); patchelfUnstable = lowPrio (callPackage ../development/tools/misc/patchelf/unstable.nix { });