mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
27 lines
656 B
Nix
27 lines
656 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
postgresql,
|
|
postgresqlBuildExtension,
|
|
}:
|
|
|
|
postgresqlBuildExtension {
|
|
pname = "jsonb_deep_sum";
|
|
version = "0-unstable-2026-06-17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "furstenheim";
|
|
repo = "jsonb_deep_sum";
|
|
rev = "3f1b4be67e3bc74b7cc4635fc285dc3c602ee420";
|
|
hash = "sha256-44GApqemY9sLukViGbyTzlI7qHeAGNdMCKZOawPUj8s=";
|
|
};
|
|
|
|
meta = {
|
|
description = "PostgreSQL extension to easily add jsonb numeric";
|
|
homepage = "https://github.com/furstenheim/jsonb_deep_sum";
|
|
maintainers = with lib.maintainers; [ _1000101 ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|