lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

netdata: 1.5.0 -> 1.7.0

yesbox 6b3d9144 d72747ea

+6 -6
+2 -2
pkgs/tools/system/netdata/default.nix
··· 1 1 { stdenv, fetchFromGitHub, autoreconfHook, zlib, pkgconfig, libuuid }: 2 2 3 3 stdenv.mkDerivation rec{ 4 - version = "1.5.0"; 4 + version = "1.7.0"; 5 5 name = "netdata-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "firehol"; 10 10 repo = "netdata"; 11 - sha256 = "1nsv0s11ai1kvig9xr4cz2f2lalvilpbfjpd8fdfqk9fak690zhz"; 11 + sha256 = "1fv01jnbgwbafsxavlji90zdqizn8m4nfg9ivc4sbi05j036bg6n"; 12 12 }; 13 13 14 14 buildInputs = [ autoreconfHook zlib pkgconfig libuuid ];
+4 -4
pkgs/tools/system/netdata/web_access.patch
··· 1 1 --- a/src/web_client.c.orig 2 2 +++ b/src/web_client.c 3 - @@ -331,7 +331,7 @@ 4 - buffer_sprintf(w->response.data, "File '%s' does not exist, or is not accessible.", webfilename); 3 + @@ -302,7 +302,7 @@ 4 + buffer_strcat_htmlescape(w->response.data, webfilename); 5 5 return 404; 6 6 } 7 7 - ··· 9 9 // check if the file is owned by expected user 10 10 if(stat.st_uid != web_files_uid()) { 11 11 error("%llu: File '%s' is owned by user %u (expected user %u). Access Denied.", w->id, webfilename, stat.st_uid, web_files_uid()); 12 - @@ -345,7 +345,7 @@ 13 - buffer_sprintf(w->response.data, "Access to file '%s' is not permitted.", webfilename); 12 + @@ -320,7 +320,7 @@ 13 + buffer_strcat_htmlescape(w->response.data, webfilename); 14 14 return 403; 15 15 } 16 16 -