mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 21:42:35 +03:00
postgresql: fix systemd support
See comments in #61581. versionAtLeast was called with arguments in the wrong order.
This commit is contained in:
parent
c248435ee3
commit
290cfc767c
@ -7,7 +7,7 @@ let
|
||||
, pkgconfig, libxml2, tzdata
|
||||
|
||||
# This is important to obtain a version of `libpq` that does not depend on systemd.
|
||||
, enableSystemd ? (lib.versionAtLeast "9.6" version && !stdenv.isDarwin)
|
||||
, enableSystemd ? (lib.versionAtLeast version "9.6" && !stdenv.isDarwin)
|
||||
|
||||
# for postgreql.pkgs
|
||||
, this, self, newScope, buildEnv
|
||||
|
Loading…
Reference in New Issue
Block a user