Merge pull request #82140 from Mic92/bcc

bcc: 0.12.0 -> 0.13.0
This commit is contained in:
Jörg Thalheim 2020-03-09 18:08:32 +00:00 committed by GitHub
commit e73596d077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,15 @@
{ stdenv, fetchFromGitHub, makeWrapper, cmake, llvmPackages, kernel { stdenv, fetchurl, makeWrapper, cmake, llvmPackages, kernel
, flex, bison, elfutils, python, luajit, netperf, iperf, libelf , flex, bison, elfutils, python, luajit, netperf, iperf, libelf
, systemtap, bash , systemtap, bash
}: }:
python.pkgs.buildPythonApplication rec { python.pkgs.buildPythonApplication rec {
version = "0.12.0"; version = "0.13.0";
name = "bcc-${version}"; name = "bcc-${version}";
src = fetchFromGitHub { src = fetchurl {
owner = "iovisor"; url = "https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz";
repo = "bcc"; sha256 = "15xpwf17x2j1c1wcb84cgfs35dp5w0rjd9mllmddmdjvn303wffx";
rev = "v${version}";
sha256 = "1r2yjxam23k56prsvjhqf8i8d3irhcvmy0bly6x23h1jc3zc6yym";
fetchSubmodules = true;
}; };
format = "other"; format = "other";