With https://github.com/NixOS/nixpkgs/pull/109887 now merged, usage of pkgconfig
in nixpkgs will now fail with the ofborg’s no-alias check. Please use the pkg-config
package.
From the PR:
pkgconfig
was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.
python3Packages.pkgconfig remained unchanged because
it’s the canonical name of the upstream package
on pypi.
Implications: pkgconfig
can still be used, the only time this will fail is if you do something like:
import <nixpkgs> { config.allowAliases = false; }
Most out-of-tree code does not make use of this configuration flag, so it should minimally impact users.