Signed-off-by: Wolfgang Walther <walther@technowledgy.de> Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
9 lines
229 B
Nix
9 lines
229 B
Nix
{ patches }: self: super:
|
|
# Overlay that sets the default version of PostgreSQL.
|
|
with patches;
|
|
{
|
|
postgresql = super.postgresql_15.overrideAttrs ({ patches ? [ ], ... }: {
|
|
patches = patches ++ [ postgresql-atexit ];
|
|
});
|
|
}
|