patchelf: 0.15.0 -> 0.15.2 (#433210)

This commit is contained in:
Vladimír Čunát
2025-08-18 08:02:12 +02:00
@@ -11,11 +11,11 @@
stdenv.mkDerivation rec {
pname = "patchelf";
version = "0.15.0";
version = "0.15.2";
src = fetchurl {
url = "https://github.com/NixOS/${pname}/releases/download/${version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-9ANtPuTY4ijewb7/8PbkbYpA6eVw4AaOOdd+YuLIvcI=";
sha256 = "sha256-F3RfVkFZyOIo/EEtplogSLhGxLa0Igt3y/IkFuAvLXw=";
};
strictDeps = true;
@@ -25,11 +25,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
# fails 8 out of 24 tests, problems when loading libc.so.6
doCheck =
stdenv.name == "stdenv-linux"
# test scripts require unprefixed bintools binaries
# https://github.com/NixOS/patchelf/issues/417
&& stdenv.cc.targetPrefix == "";
doCheck = stdenv.name == "stdenv-linux";
meta = with lib; {
homepage = "https://github.com/NixOS/patchelf";