about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorLeo Gaskin <leo.gaskin@le0.gs>2021-05-19 19:06:01 +0200
committerLeo Gaskin <leo.gaskin@le0.gs>2021-05-19 20:50:13 +0200
commitd2e042866e9847235313b3a129357dd8fd833493 (patch)
treee42ab462e686951236a9749a551c13e8135e95a8 /pkgs/tools/system
parent4035ff22b2f368bac6e493f31560fec5a5ae5acd (diff)
downloadnixlib-d2e042866e9847235313b3a129357dd8fd833493.tar
nixlib-d2e042866e9847235313b3a129357dd8fd833493.tar.gz
nixlib-d2e042866e9847235313b3a129357dd8fd833493.tar.bz2
nixlib-d2e042866e9847235313b3a129357dd8fd833493.tar.lz
nixlib-d2e042866e9847235313b3a129357dd8fd833493.tar.xz
nixlib-d2e042866e9847235313b3a129357dd8fd833493.tar.zst
nixlib-d2e042866e9847235313b3a129357dd8fd833493.zip
netdata: Remove patch which is already present in new release
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/netdata/default.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix
index 86caa0b36e2c..d1fa401d4e06 100644
--- a/pkgs/tools/system/netdata/default.nix
+++ b/pkgs/tools/system/netdata/default.nix
@@ -8,7 +8,6 @@
 , withNetfilter ? (!stdenv.isDarwin), libmnl, libnetfilter_acct
 , withSsl ? true, openssl
 , withDebug ? false
-, fetchpatch
 }:
 
 with lib;
@@ -40,11 +39,6 @@ in stdenv.mkDerivation rec {
     # required to prevent plugins from relying on /etc
     # and /var
     ./no-files-in-etc-and-var.patch
-    # cgroups: fix network interfaces detection when using virsh
-    (fetchpatch {
-      url = "https://patch-diff.githubusercontent.com/raw/netdata/netdata/pull/11096.patch";
-      sha256 = "0f2rd7kgbwbyq9wyn085d213ifvivnpl3qlx1gjrg42rkbi4n8jj";
-    })
   ];
 
   NIX_CFLAGS_COMPILE = optionalString withDebug "-O1 -ggdb -DNETDATA_INTERNAL_CHECKS=1";