mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, libbpf
|
|
, elfutils
|
|
, zlib
|
|
, libpcap
|
|
, llvmPackages
|
|
, pkg-config
|
|
, m4
|
|
, emacs-nox
|
|
, wireshark-cli
|
|
, nukeReferences
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "xdp-tools";
|
|
version = "1.2.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xdp-project";
|
|
repo = "xdp-tools";
|
|
rev = "v${version}";
|
|
sha256 = "Q1vaogcAeNjLIPaB0ovOo96hzRv69tMO5xwHh5W4Ws0=";
|
|
};
|
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
buildInputs = [
|
|
libbpf
|
|
elfutils
|
|
libpcap
|
|
zlib
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
llvmPackages.clang
|
|
llvmPackages.llvm
|
|
pkg-config
|
|
m4
|
|
emacs-nox # to generate man pages from .org
|
|
nukeReferences
|
|
];
|
|
nativeCheckInputs = [
|
|
wireshark-cli # for tshark
|
|
];
|
|
|
|
# When building BPF, the default CC wrapper is interfering a bit too much.
|
|
BPF_CFLAGS = "-fno-stack-protector -Wno-error=unused-command-line-argument";
|
|
|
|
PRODUCTION = 1;
|
|
DYNAMIC_LIBXDP = 1;
|
|
FORCE_SYSTEM_LIBBPF = 1;
|
|
FORCE_EMACS = 1;
|
|
|
|
makeFlags = [ "PREFIX=$(out)" "LIBDIR=$(lib)/lib" ];
|
|
|
|
postInstall = ''
|
|
# Note that even the static libxdp would refer to BPF_OBJECT_DIR ?=$(LIBDIR)/bpf
|
|
rm "$lib"/lib/*.a
|
|
# Drop unfortunate references to glibc.dev/include at least from $lib
|
|
nuke-refs "$lib"/lib/bpf/*.o
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/xdp-project/xdp-tools";
|
|
description = "Library and utilities for use with XDP";
|
|
license = with licenses; [ gpl2 lgpl21 bsd2 ];
|
|
maintainers = with maintainers; [ tirex vcunat vifino ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|