about summary refs log tree commit diff
path: root/pkgs/tools/system/netdata
diff options
context:
space:
mode:
authorRyan Lahfa <masterancpp@gmail.com>2023-10-21 13:34:31 +0200
committerGitHub <noreply@github.com>2023-10-21 13:34:31 +0200
commit8fc9bb20e48ad01bd837726f48e1575aedbee9a5 (patch)
tree61be3d4fee8802608f60856a070e9f3ea4496116 /pkgs/tools/system/netdata
parent9523d16abbe5333583cff4c2ae3d0edd56ca7843 (diff)
parent4b3012c59fcf07b5701a597c4dafee97ae99ae72 (diff)
downloadnixlib-8fc9bb20e48ad01bd837726f48e1575aedbee9a5.tar
nixlib-8fc9bb20e48ad01bd837726f48e1575aedbee9a5.tar.gz
nixlib-8fc9bb20e48ad01bd837726f48e1575aedbee9a5.tar.bz2
nixlib-8fc9bb20e48ad01bd837726f48e1575aedbee9a5.tar.lz
nixlib-8fc9bb20e48ad01bd837726f48e1575aedbee9a5.tar.xz
nixlib-8fc9bb20e48ad01bd837726f48e1575aedbee9a5.tar.zst
nixlib-8fc9bb20e48ad01bd837726f48e1575aedbee9a5.zip
Merge pull request #258801 from Izorkin/fix-netdata
Diffstat (limited to 'pkgs/tools/system/netdata')
-rw-r--r--pkgs/tools/system/netdata/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix
index 5d9286a1c4d1..8ca73a4faf8c 100644
--- a/pkgs/tools/system/netdata/default.nix
+++ b/pkgs/tools/system/netdata/default.nix
@@ -2,13 +2,13 @@
 , CoreFoundation, IOKit, libossp_uuid
 , nixosTests
 , netdata-go-plugins
-, bash, curl, jemalloc, libuv, zlib, libyaml
+, bash, curl, jemalloc, json_c, libuv, zlib, libyaml
 , libcap, libuuid, lm_sensors, protobuf
 , withCups ? false, cups
 , withDBengine ? true, lz4
 , withIpmi ? (!stdenv.isDarwin), freeipmi
 , withNetfilter ? (!stdenv.isDarwin), libmnl, libnetfilter_acct
-, withCloud ? (!stdenv.isDarwin), json_c
+, withCloud ? false
 , withCloudUi ? false
 , withConnPubSub ? false, google-cloud-cpp, grpc
 , withConnPrometheus ? false, snappy
@@ -42,14 +42,13 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper protobuf ];
   # bash is only used to rewrite shebangs
-  buildInputs = [ bash curl jemalloc libuv zlib libyaml ]
+  buildInputs = [ bash curl jemalloc json_c libuv zlib libyaml ]
     ++ lib.optionals stdenv.isDarwin [ CoreFoundation IOKit libossp_uuid ]
     ++ lib.optionals (!stdenv.isDarwin) [ libcap libuuid ]
     ++ lib.optionals withCups [ cups ]
     ++ lib.optionals withDBengine [ lz4 ]
     ++ lib.optionals withIpmi [ freeipmi ]
     ++ lib.optionals withNetfilter [ libmnl libnetfilter_acct ]
-    ++ lib.optionals withCloud [ json_c ]
     ++ lib.optionals withConnPubSub [ google-cloud-cpp grpc ]
     ++ lib.optionals withConnPrometheus [ snappy ]
     ++ lib.optionals (withCloud || withConnPrometheus) [ protobuf ]