Merge pull request #139867 from Mic92/bcc

authored by

Artturi and committed by
GitHub
73951697 cf6e529b

+4 -5
+4 -5
pkgs/os-specific/linux/bcc/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , makeWrapper, cmake, llvmPackages, kernel 3 3 , flex, bison, elfutils, python, luajit, netperf, iperf, libelf 4 - , systemtap, bash, libbpf 4 + , systemtap, bash 5 5 }: 6 6 7 7 python.pkgs.buildPythonApplication rec { 8 8 pname = "bcc"; 9 - version = "0.20.0"; 9 + version = "0.22.0"; 10 10 11 11 disabled = !stdenv.isLinux; 12 12 ··· 14 14 owner = "iovisor"; 15 15 repo = "bcc"; 16 16 rev = "v${version}"; 17 - sha256 = "1xnpz2zv445dp5h0160drv6xlvrnwfj23ngc4dp3clcd59jh1baq"; 17 + sha256 = "sha256-7FQz02APzjCjxCaw+e3H2GWz+UKsH0Dzgk9LoDgwDpU="; 18 + fetchSubmodules = true; 18 19 }; 19 20 format = "other"; 20 21 ··· 22 23 llvm llvm.dev libclang kernel 23 24 elfutils luajit netperf iperf 24 25 systemtap.stapBuild flex bash 25 - libbpf 26 26 ]; 27 27 28 28 patches = [ ··· 41 41 "-DREVISION=${version}" 42 42 "-DENABLE_USDT=ON" 43 43 "-DENABLE_CPP_API=ON" 44 - "-DCMAKE_USE_LIBBPF_PACKAGE=ON" 45 44 ]; 46 45 47 46 postPatch = ''