1{
2 fetchFromGitHub,
3 lib,
4 postgresql,
5 postgresqlBuildExtension,
6}:
7
8postgresqlBuildExtension (finalAttrs: {
9 pname = "temporal_tables";
10 version = "1.2.2";
11
12 src = fetchFromGitHub {
13 owner = "arkhipov";
14 repo = "temporal_tables";
15 tag = "v${finalAttrs.version}";
16 hash = "sha256-7+DCSPAPhsokWDq/5IXNhd7jY6FfzxxUjlsg/VJeD3k=";
17 };
18
19 meta = {
20 description = "Temporal Tables PostgreSQL Extension";
21 homepage = "https://github.com/arkhipov/temporal_tables";
22 maintainers = with lib.maintainers; [ ggpeti ];
23 platforms = postgresql.meta.platforms;
24 license = lib.licenses.bsd2;
25 };
26})