haumea: postgresql: 12 -> 14
Graham Christensen committed
Dec 20, 2021 at 22:37 UTC
79333d4a73e8d20538d2bf0a8b2d4718fb17a99a
1 file changed
+1
-1
delft/haumea.nix
+1
-1
@@ -84,7 +84,7 @@
84
85
services.postgresql = {
86
enable = true;
87
- package = if true then pkgs.postgresql_12 else pkgs.postgresql_12.overrideAttrs({ nativeBuildInputs, configureFlags, ...}: {
87
+ package = if true then pkgs.postgresql_14 else pkgs.postgresql_14.overrideAttrs({ nativeBuildInputs, configureFlags, ...}: {
88
# Enable JIT compilation of queries, remove after https://github.com/NixOS/nixpkgs/pull/124804
89
nativeBuildInputs = nativeBuildInputs ++ [ pkgs.llvm pkgs.clang ];
90
configureFlags = configureFlags ++ [ "--with-llvm" ];