summary refs log tree commit diff
path: root/pkgs/tools/system/netdata
diff options
context:
space:
mode:
authorRaghav Sood <r@raghavsood.com>2021-02-20 10:32:52 +0000
committerRaghav Sood <r@raghavsood.com>2021-02-20 10:32:52 +0000
commitdf790a9626787df163dfc378cb49d8fb3f552226 (patch)
tree151e1ff25af9f6a2a44cd8f935c2affbfae159f0 /pkgs/tools/system/netdata
parent29263ef37e55e401f2fa48ff05b2ff7ca683caa6 (diff)
downloadnixpkgs-df790a9626787df163dfc378cb49d8fb3f552226.tar
nixpkgs-df790a9626787df163dfc378cb49d8fb3f552226.tar.gz
nixpkgs-df790a9626787df163dfc378cb49d8fb3f552226.tar.bz2
nixpkgs-df790a9626787df163dfc378cb49d8fb3f552226.tar.lz
nixpkgs-df790a9626787df163dfc378cb49d8fb3f552226.tar.xz
nixpkgs-df790a9626787df163dfc378cb49d8fb3f552226.tar.zst
nixpkgs-df790a9626787df163dfc378cb49d8fb3f552226.zip
netdata: remove unused imports, fix suggestions
Diffstat (limited to 'pkgs/tools/system/netdata')
-rw-r--r--pkgs/tools/system/netdata/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix
index 6fd15d3d20d..09050868826 100644
--- a/pkgs/tools/system/netdata/default.nix
+++ b/pkgs/tools/system/netdata/default.nix
@@ -1,6 +1,6 @@
 { lib, stdenv, callPackage, fetchFromGitHub, autoreconfHook, pkg-config
 , CoreFoundation, IOKit, libossp_uuid
-, curl, libcap,  libuuid, lm_sensors, zlib, fetchpatch
+, curl, libcap,  libuuid, lm_sensors, zlib
 , nixosTests
 , withCups ? false, cups
 , withDBengine ? true, libuv, lz4, judy
@@ -36,6 +36,8 @@ in stdenv.mkDerivation rec {
     ++ optionals withSsl [ openssl.dev ];
 
   patches = [
+    # required to prevent plugins from relying on /etc
+    # and /var
     ./no-files-in-etc-and-var.patch
   ];
 
@@ -77,7 +79,7 @@ in stdenv.mkDerivation rec {
   meta = {
     description = "Real-time performance monitoring tool";
     homepage = "https://www.netdata.cloud/";
-    license = licenses.gpl3;
+    license = licenses.gpl3Plus;
     platforms = platforms.unix;
     maintainers = [ maintainers.lethalman ];
   };