netdata: remove unused imports, fix suggestions
This commit is contained in:
parent
29263ef37e
commit
df790a9626
@ -1,6 +1,6 @@
|
|||||||
{ lib, stdenv, callPackage, fetchFromGitHub, autoreconfHook, pkg-config
|
{ lib, stdenv, callPackage, fetchFromGitHub, autoreconfHook, pkg-config
|
||||||
, CoreFoundation, IOKit, libossp_uuid
|
, CoreFoundation, IOKit, libossp_uuid
|
||||||
, curl, libcap, libuuid, lm_sensors, zlib, fetchpatch
|
, curl, libcap, libuuid, lm_sensors, zlib
|
||||||
, nixosTests
|
, nixosTests
|
||||||
, withCups ? false, cups
|
, withCups ? false, cups
|
||||||
, withDBengine ? true, libuv, lz4, judy
|
, withDBengine ? true, libuv, lz4, judy
|
||||||
@ -36,6 +36,8 @@ in stdenv.mkDerivation rec {
|
|||||||
++ optionals withSsl [ openssl.dev ];
|
++ optionals withSsl [ openssl.dev ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
# required to prevent plugins from relying on /etc
|
||||||
|
# and /var
|
||||||
./no-files-in-etc-and-var.patch
|
./no-files-in-etc-and-var.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -77,7 +79,7 @@ in stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
description = "Real-time performance monitoring tool";
|
description = "Real-time performance monitoring tool";
|
||||||
homepage = "https://www.netdata.cloud/";
|
homepage = "https://www.netdata.cloud/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ maintainers.lethalman ];
|
maintainers = [ maintainers.lethalman ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user