Files
nixpkgs/pkgs/servers/sql/postgresql/ext/pg_relusage.nix
Wolfgang Walther 72b8186ff7 postgresqlPackages: rename buildPostgresqlExtension to postgresqlBuildExtension
This is for consistency with postgresqlTestExtension and
postgresqlTestHook. Everything that is passed via postgresql's
generic.nix "packages scope" now is prefixed with "postgresql".
2025-03-18 18:17:24 +01:00

28 lines
658 B
Nix

{
fetchFromGitHub,
lib,
postgresql,
postgresqlBuildExtension,
stdenv,
}:
postgresqlBuildExtension rec {
pname = "pg_relusage";
version = "0.0.1";
src = fetchFromGitHub {
owner = "adept";
repo = "pg_relusage";
tag = "${version}";
hash = "sha256-8hJNjQ9MaBk3J9a73l+yQMwMW/F2N8vr5PO2o+5GvYs=";
};
meta = {
description = "pg_relusage extension for PostgreSQL: discover and log the relations used in your statements";
homepage = "https://github.com/adept/pg_relusage";
maintainers = with lib.maintainers; [ thenonameguy ];
platforms = postgresql.meta.platforms;
license = lib.licenses.postgresql;
};
}