2021-12-13 10:04:58 +01:00
|
|
|
{ fetchFromGitHub
|
2020-09-09 17:09:16 +02:00
|
|
|
, fetchpatch
|
2021-12-13 10:04:58 +01:00
|
|
|
, libelf
|
|
|
|
, pkg-config
|
|
|
|
, stdenv
|
|
|
|
, zlib
|
|
|
|
, lib
|
2021-12-26 00:21:59 +01:00
|
|
|
, nixosTests
|
2019-05-21 20:06:36 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
with builtins;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libbpf";
|
2021-12-13 10:04:58 +01:00
|
|
|
version = "0.6.1";
|
2019-05-21 20:06:36 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-12-13 10:04:58 +01:00
|
|
|
owner = "libbpf";
|
|
|
|
repo = "libbpf";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-/MLPflnfooe7Wjy8M3CTowAi5oYpscruSkDsaVzhmYQ=";
|
2019-05-21 20:06:36 +02:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-03-09 23:53:53 +01:00
|
|
|
buildInputs = [ libelf zlib ];
|
2019-05-21 20:06:36 +02:00
|
|
|
|
|
|
|
sourceRoot = "source/src";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-12-13 10:04:58 +01:00
|
|
|
passthru.tests = {
|
|
|
|
bpf = nixosTests.bpf;
|
|
|
|
};
|
|
|
|
|
2021-12-04 12:25:09 +01:00
|
|
|
postInstall = ''
|
|
|
|
# install linux's libbpf-compatible linux/btf.h
|
|
|
|
install -Dm444 ../include/uapi/linux/btf.h -t $out/include/linux
|
|
|
|
'';
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
# FIXME: Multi-output requires some fixes to the way the pkg-config file is
|
2019-05-21 20:06:36 +02:00
|
|
|
# constructed (it gets put in $out instead of $dev for some reason, with
|
|
|
|
# improper paths embedded). Don't enable it for now.
|
|
|
|
|
|
|
|
# outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-05-21 20:06:36 +02:00
|
|
|
description = "Upstream mirror of libbpf";
|
2021-12-13 10:04:58 +01:00
|
|
|
homepage = "https://github.com/libbpf/libbpf";
|
|
|
|
license = with licenses; [ lgpl21 /* or */ bsd2 ];
|
2021-12-04 12:25:09 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice vcunat saschagrunert martinetd ];
|
2021-12-13 10:04:58 +01:00
|
|
|
platforms = platforms.linux;
|
2019-05-21 20:06:36 +02:00
|
|
|
};
|
|
|
|
}
|