postgresql_12: init at 12.0

Release notes: https://www.postgresql.org/docs/12/release-12.html
This commit is contained in:
Mario Rodas
2019-10-03 18:00:00 -05:00
parent 54ad1d8d41
commit 387020ecf8
2 changed files with 11 additions and 2 deletions

View File

@@ -81,8 +81,8 @@ let
postInstall =
''
moveToOutput "lib/pgxs" "$out" # looks strange, but not deleting it
moveToOutput "lib/libpgcommon.a" "$out"
moveToOutput "lib/libpgport.a" "$out"
moveToOutput "lib/libpgcommon*.a" "$out"
moveToOutput "lib/libpgport*.a" "$out"
moveToOutput "lib/libecpg*" "$out"
# Prevent a retained dependency on gcc-wrapper.
@@ -200,4 +200,12 @@ in self: {
inherit self;
};
postgresql_12 = self.callPackage generic {
version = "12.0";
psqlSchema = "12";
sha256 = "1ijm13gx1d9ai09n26nbdc77n9b8akh6pj21yy9vfn7p2mr3k8nd";
this = self.postgresql_12;
inherit self;
};
}