Skip to content

Commit

Permalink
postgresql: fix systemd support
Browse files Browse the repository at this point in the history
See comments in NixOS#61581. versionAtLeast was called with arguments in the
wrong order.
  • Loading branch information
fpletz committed Jul 23, 2019
1 parent c248435 commit 290cfc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/servers/sql/postgresql/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 290cfc7

Please sign in to comment.