summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/ext
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
commitda5f6e21c66094bef103b938683cc5384754d320 (patch)
tree3cca9cc7ef66ccf6089250b7bb446ed659c58b82 /pkgs/servers/sql/postgresql/ext
parent5649f3bcbe23deb5ddb3dcb59e0bae07ea734552 (diff)
downloadnixpkgs-da5f6e21c66094bef103b938683cc5384754d320.tar
nixpkgs-da5f6e21c66094bef103b938683cc5384754d320.tar.gz
nixpkgs-da5f6e21c66094bef103b938683cc5384754d320.tar.bz2
nixpkgs-da5f6e21c66094bef103b938683cc5384754d320.tar.lz
nixpkgs-da5f6e21c66094bef103b938683cc5384754d320.tar.xz
nixpkgs-da5f6e21c66094bef103b938683cc5384754d320.tar.zst
nixpkgs-da5f6e21c66094bef103b938683cc5384754d320.zip
postgresql16Packages.pgroonga: fix build on darwin
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pgroonga.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pgroonga.nix b/pkgs/servers/sql/postgresql/ext/pgroonga.nix
index b847de1f3ae..535a16abad1 100644
--- a/pkgs/servers/sql/postgresql/ext/pgroonga.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgroonga.nix
@@ -18,11 +18,11 @@ stdenv.mkDerivation rec {
   ];
 
   installPhase = ''
-    install -D pgroonga.so -t $out/lib/
+    install -D pgroonga${postgresql.dlSuffix} -t $out/lib/
     install -D pgroonga.control -t $out/share/postgresql/extension
     install -D data/pgroonga-*.sql -t $out/share/postgresql/extension
 
-    install -D pgroonga_database.so -t $out/lib/
+    install -D pgroonga_database${postgresql.dlSuffix} -t $out/lib/
     install -D pgroonga_database.control -t $out/share/postgresql/extension
     install -D data/pgroonga_database-*.sql -t $out/share/postgresql/extension
   '';