about summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-09-22 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-09-22 04:20:00 +0000
commite803ddcaf5a947e8fab28945758c9d011f304ba4 (patch)
treea0793d57ebba030cf6b261bac7bf85687e6a1b33 /pkgs/servers/sql/postgresql
parent7b5d06339f52688f920503d24e6cd3cd9a77ed46 (diff)
downloadnixlib-e803ddcaf5a947e8fab28945758c9d011f304ba4.tar
nixlib-e803ddcaf5a947e8fab28945758c9d011f304ba4.tar.gz
nixlib-e803ddcaf5a947e8fab28945758c9d011f304ba4.tar.bz2
nixlib-e803ddcaf5a947e8fab28945758c9d011f304ba4.tar.lz
nixlib-e803ddcaf5a947e8fab28945758c9d011f304ba4.tar.xz
nixlib-e803ddcaf5a947e8fab28945758c9d011f304ba4.tar.zst
nixlib-e803ddcaf5a947e8fab28945758c9d011f304ba4.zip
postgresql16Packages.pgsql-http: fix build on darwin
Diffstat (limited to 'pkgs/servers/sql/postgresql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pgsql-http.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pgsql-http.nix b/pkgs/servers/sql/postgresql/ext/pgsql-http.nix
index a0ef596aaded..f2fc5a329f87 100644
--- a/pkgs/servers/sql/postgresql/ext/pgsql-http.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgsql-http.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ curl postgresql ];
 
   installPhase = ''
-    install -D -t $out/lib *.so
+    install -D -t $out/lib *${postgresql.dlSuffix}
     install -D -t $out/share/postgresql/extension *.sql
     install -D -t $out/share/postgresql/extension *.control
   '';