Merge pull request #203295 from vcunat/p/patchelf-rename

patchelf_0_14: rename to patchelfStable
This commit is contained in:
Jörg Thalheim
2022-11-27 19:20:41 +01:00
committed by GitHub
+3 -3
View File
@@ -17534,11 +17534,11 @@ with pkgs;
patchelf = if with stdenv.buildPlatform; isAarch64 && isMusl then
patchelf_0_13
else
patchelf_0_14;
patchelfStable;
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 { });