summaryrefslogtreecommitdiff
path: root/overlays/databases/postgresql/default.nix
blob: ae5898779941417a1f644c30dd3240ee9e773673 (plain) (blame)
1
2
3
4
5
6
7
8
self: super: rec {
  postgresql_11_custom = super.postgresql_11.overrideAttrs(old: {
    # datadir in /var/lib/postgresql is named after psqlSchema
    passthru = old.passthru // { psqlSchema = "11.0"; };
    configureFlags = old.configureFlags ++ [ "--with-pam" ];
    buildInputs = (old.buildInputs or []) ++ [ self.pam ];
  });
}