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
commit47a896f3c72ee5a528e496175eb4d949867122d3 (patch)
tree27eb2c534e94fceec196924769db6ba0dd11bf1b /pkgs/servers/sql/postgresql
parent6f9e07dd45f0aed349ef90ddff996f05d7df3974 (diff)
downloadnixlib-47a896f3c72ee5a528e496175eb4d949867122d3.tar
nixlib-47a896f3c72ee5a528e496175eb4d949867122d3.tar.gz
nixlib-47a896f3c72ee5a528e496175eb4d949867122d3.tar.bz2
nixlib-47a896f3c72ee5a528e496175eb4d949867122d3.tar.lz
nixlib-47a896f3c72ee5a528e496175eb4d949867122d3.tar.xz
nixlib-47a896f3c72ee5a528e496175eb4d949867122d3.tar.zst
nixlib-47a896f3c72ee5a528e496175eb4d949867122d3.zip
postgresql16Packages.pg_hint_plan: fix build on darwin
Diffstat (limited to 'pkgs/servers/sql/postgresql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix b/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix
index f710c5c3d381..d0cf1193fb56 100644
--- a/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix
+++ b/pkgs/servers/sql/postgresql/ext/pg_hint_plan.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation {
   buildInputs = [ postgresql ];
 
   installPhase = ''
-    install -D -t $out/lib pg_hint_plan.so
+    install -D -t $out/lib pg_hint_plan${postgresql.dlSuffix}
     install -D -t $out/share/postgresql/extension *.sql
     install -D -t $out/share/postgresql/extension *.control
   '';