summary refs log tree commit diff
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
commit5649f3bcbe23deb5ddb3dcb59e0bae07ea734552 (patch)
tree531c4c14462d7bb8febac3d1eaa3e08b7ac315a7
parentd2ef404d4c17858f69729494360177486279f9a5 (diff)
downloadnixpkgs-5649f3bcbe23deb5ddb3dcb59e0bae07ea734552.tar
nixpkgs-5649f3bcbe23deb5ddb3dcb59e0bae07ea734552.tar.gz
nixpkgs-5649f3bcbe23deb5ddb3dcb59e0bae07ea734552.tar.bz2
nixpkgs-5649f3bcbe23deb5ddb3dcb59e0bae07ea734552.tar.lz
nixpkgs-5649f3bcbe23deb5ddb3dcb59e0bae07ea734552.tar.xz
nixpkgs-5649f3bcbe23deb5ddb3dcb59e0bae07ea734552.tar.zst
nixpkgs-5649f3bcbe23deb5ddb3dcb59e0bae07ea734552.zip
postgresql16Packages.periods: fix build on darwin
-rw-r--r--pkgs/servers/sql/postgresql/ext/periods.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/periods.nix b/pkgs/servers/sql/postgresql/ext/periods.nix
index 9a390e258da..102f80cf8d7 100644
--- a/pkgs/servers/sql/postgresql/ext/periods.nix
+++ b/pkgs/servers/sql/postgresql/ext/periods.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ 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
   '';