bpftune: 0-unstable-2024-06-07 -> 0-unstable-2024-10-25

This commit is contained in:
ajs124 2024-11-18 23:29:39 +01:00
parent 9eea90d9cf
commit 40891fc819

View File

@ -12,26 +12,22 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "bpftune"; pname = "bpftune";
version = "0-unstable-2024-06-07"; version = "0-unstable-2024-10-25";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "oracle"; owner = "oracle";
repo = "bpftune"; repo = "bpftune";
rev = "04bab5dd306b55b3e4e13e261af2480b7ccff9fc"; rev = "6a50f5ff619caeea6f04d889e3a60de6c12feb76";
hash = "sha256-kVjvupZ6HxJocwXWOrxUNqEGl0welJRlZwvOmMKqeBA="; hash = "sha256-yol6VFelqQiPKLg1UUeP+r/+XO4fjYeDbIeI29gZ7j4=";
}; };
postPatch = '' postPatch = ''
# otherwise shrink rpath would drop $out/lib from rpath # otherwise shrink rpath would drop $out/lib from rpath
substituteInPlace src/Makefile \ substituteInPlace src/Makefile \
--replace-fail /lib64 /lib \
--replace-fail /sbin /bin \ --replace-fail /sbin /bin \
--replace-fail ldconfig true --replace-fail ldconfig true
substituteInPlace src/bpftune.service \ substituteInPlace src/bpftune.service \
--replace-fail /usr/sbin/bpftune "$out/bin/bpftune" --replace-fail /usr/sbin/bpftune "$out/bin/bpftune"
substituteInPlace include/bpftune/libbpftune.h \
--replace-fail /usr/lib64/bpftune/ "$out/lib/bpftune/" \
--replace-fail /usr/local/lib64/bpftune/ "$out/lib/bpftune/"
substituteInPlace src/libbpftune.c \ substituteInPlace src/libbpftune.c \
--replace-fail /lib/modules /run/booted-system/kernel-modules/lib/modules --replace-fail /lib/modules /run/booted-system/kernel-modules/lib/modules
''; '';
@ -51,6 +47,7 @@ stdenv.mkDerivation rec {
makeFlags = [ makeFlags = [
"prefix=${placeholder "out"}" "prefix=${placeholder "out"}"
"confprefix=${placeholder "out"}/etc" "confprefix=${placeholder "out"}/etc"
"libdir=lib"
"BPFTUNE_VERSION=${version}" "BPFTUNE_VERSION=${version}"
"NL_INCLUDE=${lib.getDev libnl}/include/libnl3" "NL_INCLUDE=${lib.getDev libnl}/include/libnl3"
"BPF_INCLUDE=${lib.getDev libbpf}/include" "BPF_INCLUDE=${lib.getDev libbpf}/include"