nix: Build only libpq instead of full postgresql package

This commit is contained in:
Wolfgang Walther
2024-01-26 17:17:05 +01:00
committed by Wolfgang Walther
parent 259d97acee
commit 85fbb233a7
7 changed files with 74 additions and 26 deletions
+6
View File
@@ -0,0 +1,6 @@
self: super:
{
libpq = super.callPackage ../libpq.nix {
postgresql = super.postgresql_15;
};
}