mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
postgresql: add dlSuffix to passthru
PostgreSQL changed the extension of its extensions in Darwin to use .dylib [1]
[1] b55f62abb2
This commit is contained in:
parent
344a502055
commit
9bd59c622a
@ -230,6 +230,8 @@ let
|
||||
withJIT = if jitSupport then this else jitToggle;
|
||||
withoutJIT = if jitSupport then jitToggle else this;
|
||||
|
||||
dlSuffix = if olderThan "16" then ".so" else stdenv.hostPlatform.extensions.sharedLibrary;
|
||||
|
||||
pkgs = let
|
||||
scope = {
|
||||
postgresql = this;
|
||||
|
Loading…
Reference in New Issue
Block a user