diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-02 02:43:40 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-02 02:43:59 +0200 |
commit | 851f25966e419564e2288c6dc675d0954da7e8cf (patch) | |
tree | 61527f980722691be22bc0d70586fdcc33c004a2 /overlays/databases/postgresql | |
parent | c1b6f97a72e0b4897ce11414df28259d4ea3c5ab (diff) | |
download | Nix-851f25966e419564e2288c6dc675d0954da7e8cf.tar.gz Nix-851f25966e419564e2288c6dc675d0954da7e8cf.tar.zst Nix-851f25966e419564e2288c6dc675d0954da7e8cf.zip |
Adapt postgresql overlay
Many packages depend on postgresql but are not tied to custom version
Diffstat (limited to 'overlays/databases/postgresql')
-rw-r--r-- | overlays/databases/postgresql/default.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/overlays/databases/postgresql/default.nix b/overlays/databases/postgresql/default.nix index 8dec7ff..8d1405e 100644 --- a/overlays/databases/postgresql/default.nix +++ b/overlays/databases/postgresql/default.nix | |||
@@ -1,6 +1,5 @@ | |||
1 | self: super: rec { | 1 | self: super: rec { |
2 | postgresql = postgresql_11; | 2 | postgresql_11_custom = super.postgresql_11.overrideAttrs(old: { |
3 | postgresql_11 = super.postgresql_11.overrideAttrs(old: { | ||
4 | # datadir in /var/lib/postgresql is named after psqlSchema | 3 | # datadir in /var/lib/postgresql is named after psqlSchema |
5 | passthru = old.passthru // { psqlSchema = "11.0"; }; | 4 | passthru = old.passthru // { psqlSchema = "11.0"; }; |
6 | configureFlags = old.configureFlags ++ [ "--with-pam" ]; | 5 | configureFlags = old.configureFlags ++ [ "--with-pam" ]; |