mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
postgresql: conditionalize systemd (on darwin)
This commit is contained in:
parent
d04fedd715
commit
f31ea5a2d5
@ -16,7 +16,8 @@ let
|
||||
setOutputFlags = false; # $out retains configureFlags :-/
|
||||
|
||||
buildInputs =
|
||||
[ zlib readline openssl libxml2 makeWrapper systemd ]
|
||||
[ zlib readline openssl libxml2 makeWrapper ]
|
||||
++ lib.optionals (atLeast "9.6" && !stdenv.isDarwin) [ systemd ]
|
||||
++ lib.optionals (!stdenv.isDarwin) [ libossp_uuid ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
Loading…
Reference in New Issue
Block a user