{ lib, stdenv, fetchurl, autoreconfHook, fetchFromGitHub, unstableGitUpdater }: stdenv.mkDerivation rec { pname = "patchelf"; version = "unstable-2022-10-26"; src = fetchFromGitHub { owner = "NixOS"; repo = "patchelf"; rev = "af77f12554be9cc4b9e8b639df26f2659dd30500"; sha256 = "sha256-ajMOC1wyTVUOvP0rOt/uO6+1+S4bIAc1jWQ8Uwbzrn8="; }; # Drop test that fails on musl (?) postPatch = lib.optionalString stdenv.hostPlatform.isMusl '' substituteInPlace tests/Makefile.am \ --replace "set-rpath-library.sh" "" ''; setupHook = [ ./setup-hook.sh ]; nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ ]; doCheck = !stdenv.isDarwin; passthru = { updateScript = unstableGitUpdater { url = "https://github.com/NixOS/patchelf.git"; }; }; meta = with lib; { homepage = "https://github.com/NixOS/patchelf"; license = licenses.gpl3; description = "A small utility to modify the dynamic linker and RPATH of ELF executables"; maintainers = [ maintainers.eelco ]; platforms = platforms.all; }; }