1{
2 fetchFromGitHub,
3 lib,
4 postgresql,
5 postgresqlBuildExtension,
6}:
7
8postgresqlBuildExtension {
9 pname = "jsonb_deep_sum";
10 version = "0-unstable-2021-12-24";
11
12 src = fetchFromGitHub {
13 owner = "furstenheim";
14 repo = "jsonb_deep_sum";
15 rev = "d9c69aa6b7da860e5522a9426467e67cb787980c";
16 hash = "sha256-W1wNILAwTAjFPezq+grdRMA59KEnMZDz69n9xQUqdc0=";
17 };
18
19 meta = {
20 description = "PostgreSQL extension to easily add jsonb numeric";
21 homepage = "https://github.com/furstenheim/jsonb_deep_sum";
22 maintainers = with lib.maintainers; [ _1000101 ];
23 platforms = postgresql.meta.platforms;
24 license = lib.licenses.mit;
25 };
26}