mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
26 lines
620 B
Nix
26 lines
620 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
postgresql,
|
|
postgresqlBuildExtension,
|
|
}:
|
|
|
|
postgresqlBuildExtension (finalAttrs: {
|
|
pname = "temporal_tables";
|
|
version = "1.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arkhipov";
|
|
repo = "temporal_tables";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-7+DCSPAPhsokWDq/5IXNhd7jY6FfzxxUjlsg/VJeD3k=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Temporal Tables PostgreSQL Extension";
|
|
homepage = "https://github.com/arkhipov/temporal_tables";
|
|
maintainers = with lib.maintainers; [ ggpeti ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
})
|