Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2020-01-02 21:41:13 +01:00
118 changed files with 2412 additions and 2737 deletions
+7 -5
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoreconfHook, pkgconfig
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, CoreFoundation, IOKit, libossp_uuid
, curl, libcap, libuuid, lm_sensors, zlib
, withCups ? false, cups
@@ -12,12 +12,14 @@
with stdenv.lib;
stdenv.mkDerivation rec {
version = "1.18.1";
version = "1.19.0";
pname = "netdata";
src = fetchurl {
url = "https://github.com/netdata/netdata/releases/download/v${version}/netdata-v${version}.tar.gz";
sha256 = "08g5jp63k8y5gbg8v9hxj75q0533c6cyzpjml9z1g5h2h4zaik1r";
src = fetchFromGitHub {
owner = "netdata";
repo = "netdata";
rev = "v${version}";
sha256 = "1s6kzx4xh8b6v7ki8h2mfzprj5rxvlgx2md20cr8c0v81qpz3q3q";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];