We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2112a50 commit 79d2b7bCopy full SHA for 79d2b7b
lib/system-nixpkgs-map.nix
@@ -17,6 +17,9 @@ let
17
lndir ${pkgs.buildPackages.gcc.cc} $out
18
'')
19
] else [];
20
+ # In newer versions of nixpkgs `pg_config` has been moved to its own derivation.
21
+ # Haskell libs that depend on the `pq` library (like `postgresql-libpq`)
22
+ # are likely to require `pg_config` to be in the `PATH` as well.
23
postgresqlLibs = [ postgresql ] ++ lib.optional (postgresql ? pg_config) postgresql.pg_config;
24
in
25
# -- linux
0 commit comments