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
commitbaedf9c0b8c371e9c1fb0300463969b33b6eaab2 (patch)
tree0a9ed1ae72899b1edd388e596288fc2f61a5e959 /pkgs/servers/sql/postgresql/ext
parentac7d7f10a7fb7f460ac5a00b6de7e1ac77d3fdd1 (diff)
downloadnixpkgs-baedf9c0b8c371e9c1fb0300463969b33b6eaab2.tar
nixpkgs-baedf9c0b8c371e9c1fb0300463969b33b6eaab2.tar.gz
nixpkgs-baedf9c0b8c371e9c1fb0300463969b33b6eaab2.tar.bz2
nixpkgs-baedf9c0b8c371e9c1fb0300463969b33b6eaab2.tar.lz
nixpkgs-baedf9c0b8c371e9c1fb0300463969b33b6eaab2.tar.xz
nixpkgs-baedf9c0b8c371e9c1fb0300463969b33b6eaab2.tar.zst
nixpkgs-baedf9c0b8c371e9c1fb0300463969b33b6eaab2.zip
postgresql16Packages.tsearch-extras: fix build on darwin
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext')
-rw-r--r--pkgs/servers/sql/postgresql/ext/tsearch_extras.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix b/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix
index 582451b3ba4..b42095acd71 100644
--- a/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix
+++ b/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
   buildInputs = [ postgresql ];
 
   installPhase = ''
-    install -D tsearch_extras.so -t $out/lib/
+    install -D tsearch_extras${postgresql.dlSuffix} -t $out/lib/
     install -D ./{tsearch_extras--1.0.sql,tsearch_extras.control} -t $out/share/postgresql/extension
   '';