bpftrace: remove libelf extraneous dependency

elfutils provides a libelf, we don't need it twice
This commit is contained in:
Dominique Martinet 2022-07-13 19:50:34 +09:00
parent 3c1447f807
commit 3762c001fa

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
];