Unverified Commit aafe3380 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

postgresqlPackages.system_stats: 3.2.1 -> 4.0 (#508965)

parents f68784ad 8f240b05
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@
}:
postgresqlBuildExtension (finalAttrs: {
  pname = "system_stats";
  version = "3.2.1";
  version = "4.0";

  src = fetchFromGitHub {
    owner = "EnterpriseDB";
    repo = "system_stats";
    tag = "v${finalAttrs.version}";
    hash = "sha256-VuSWpBqd8HeHEqfOcx8gNuCLtVWOkG7FJ8XM8Mp54ls=";
    hash = "sha256-+DHfhLBoYdWBvXZVcvnWlNwceTNsQ/irEdgnklv5onA=";
  };

  buildFlags = [ "PG_CFLAGS=-Wno-error=vla" ];
@@ -20,7 +20,7 @@ postgresqlBuildExtension (finalAttrs: {
  meta = {
    description = "Postgres extension for exposing system metrics such as CPU, memory and disk information";
    homepage = "https://github.com/EnterpriseDB/system_stats";
    changelog = "https://github.com/EnterpriseDB/system_stats/raw/v${finalAttrs.version}/CHANGELOG.md";
    changelog = "https://github.com/EnterpriseDB/system_stats/releases/tag/v${finalAttrs.version}";
    maintainers = with lib.maintainers; [ shivaraj-bh ];
    platforms = postgresql.meta.platforms;
    license = lib.licenses.postgresql;