mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
24 lines
769 B
Nix
24 lines
769 B
Nix
{ lib, stdenv, fetchFromGitHub, postgresql, buildPostgresqlExtension }:
|
|
|
|
buildPostgresqlExtension rec {
|
|
pname = "pg_partman";
|
|
version = "5.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pgpartman";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-GrVOJ5ywZMyqyDroYDLdKkXDdIJSDGhDfveO/ZvrmYs=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Partition management extension for PostgreSQL";
|
|
homepage = "https://github.com/pgpartman/pg_partman";
|
|
changelog = "https://github.com/pgpartman/pg_partman/blob/v${version}/CHANGELOG.md";
|
|
maintainers = with maintainers; [ ggpeti ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = licenses.postgresql;
|
|
broken = versionOlder postgresql.version "14";
|
|
};
|
|
}
|