Merge pull request #181349 from martinetd/libelf

bpftrace/bpftool: libelf -> elfutils dependency update
This commit is contained in:
Jörg Thalheim 2022-07-16 06:57:00 +02:00 committed by GitHub
commit d7b863c911
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{ lib, stdenv
, libopcodes, libbfd, libelf, readline
, libopcodes, libbfd, elfutils, readline
, linuxPackages_latest, zlib
, python3, bison, flex
}:
@ -9,7 +9,7 @@ stdenv.mkDerivation {
inherit (linuxPackages_latest.kernel) version src;
nativeBuildInputs = [ python3 bison flex ];
buildInputs = [ libopcodes libbfd libelf zlib readline ];
buildInputs = [ libopcodes libbfd elfutils zlib readline ];
preConfigure = ''
patchShebangs scripts/bpf_doc.py

View file

@ -1,7 +1,7 @@
{ lib, stdenv, fetchFromGitHub
, cmake, pkg-config, flex, bison
, llvmPackages, elfutils
, libelf, libbfd, libbpf, libopcodes, bcc
, libbfd, libbpf, libopcodes, bcc
, cereal, asciidoctor
, nixosTests
, util-linux
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
buildInputs = with llvmPackages;
[ llvm libclang
elfutils libelf bcc
elfutils bcc
libbpf libbfd libopcodes
cereal asciidoctor
];