summary refs log tree commit diff
path: root/pkgs/os-specific/linux/bcc
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-10-30 12:48:35 +0100
committerJörg Thalheim <joerg@thalheim.io>2020-11-06 10:06:34 +0100
commit5a540a899682799f59258bf475297e5cfc9997b6 (patch)
treefc9144f185a669651b8e106f5b868a3c046e8a37 /pkgs/os-specific/linux/bcc
parent63aa105b1c1759029e229ea5d1fda08950956216 (diff)
downloadnixpkgs-5a540a899682799f59258bf475297e5cfc9997b6.tar
nixpkgs-5a540a899682799f59258bf475297e5cfc9997b6.tar.gz
nixpkgs-5a540a899682799f59258bf475297e5cfc9997b6.tar.bz2
nixpkgs-5a540a899682799f59258bf475297e5cfc9997b6.tar.lz
nixpkgs-5a540a899682799f59258bf475297e5cfc9997b6.tar.xz
nixpkgs-5a540a899682799f59258bf475297e5cfc9997b6.tar.zst
nixpkgs-5a540a899682799f59258bf475297e5cfc9997b6.zip
linuxPackages.bcc: 0.16.0 -> 0.17.0
Diffstat (limited to 'pkgs/os-specific/linux/bcc')
-rw-r--r--pkgs/os-specific/linux/bcc/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/os-specific/linux/bcc/default.nix b/pkgs/os-specific/linux/bcc/default.nix
index a90b2fce34d..2bc705d4487 100644
--- a/pkgs/os-specific/linux/bcc/default.nix
+++ b/pkgs/os-specific/linux/bcc/default.nix
@@ -6,13 +6,13 @@
 
 python.pkgs.buildPythonApplication rec {
   pname = "bcc";
-  version = "0.16.0";
+  version = "0.17.0";
 
   disabled = !stdenv.isLinux;
 
   src = fetchurl {
     url = "https://github.com/iovisor/bcc/releases/download/v${version}/bcc-src-with-submodule.tar.gz";
-    sha256 = "sha256-ekVRyugpZOU1nr0N9kWCSoJTmtD2qGsn/DmWgK7XZ/c=";
+    sha256 = "sha256-aEy8WwtKGaf7GZOTK5IHhwzenqU2U+vpWrcNWMCGvMw=";
   };
   format = "other";
 
@@ -26,12 +26,6 @@ python.pkgs.buildPythonApplication rec {
     # This is needed until we fix
     # https://github.com/NixOS/nixpkgs/issues/40427
     ./fix-deadlock-detector-import.patch
-
-    # This is already upstream; remove it on the next release
-    (fetchpatch {
-      url = "https://github.com/iovisor/bcc/commit/60de17161fe7f44b534a8da343edbad2427220e3.patch";
-      sha256 = "0pd5b4vgpdxbsrjwrw2kmn4l9hpj0rwdm3hvwvk7dsr3raz7w4b3";
-    })
   ];
 
   propagatedBuildInputs = [ python.pkgs.netaddr ];