libsystemtap: Fix cross

configure: error: missing elfutils development headers/libraries
(install elfutils-devel, libebl-dev, libdw-dev and/or libebl-devel)
This commit is contained in:
Bobby Rong
2024-10-14 20:54:09 +08:00
parent f65d304316
commit bcd9f660e0
@@ -16,11 +16,20 @@ stdenv.mkDerivation {
dontBuild = true;
nativeBuildInputs = [ gettext python3 elfutils ];
nativeBuildInputs = [
gettext
python3
];
buildInputs = [ elfutils ];
installPhase = ''
runHook preInstall
mkdir -p $out/include
cp -r includes/* $out/include/
runHook postInstall
'';
meta = with lib; {