lol

nixos/manual: pkgconfig -> pkg-config

authored by

Jonathan Ringer and committed by
Jonathan Ringer
4edbbe52 f14f0fcd

+1 -1
+1 -1
nixos/doc/manual/configuration/linux-kernel.xml
··· 87 87 You can edit the config with this snippet (by default <command>make 88 88 menuconfig</command> won't work out of the box on nixos): 89 89 <screen><![CDATA[ 90 - nix-shell -E 'with import <nixpkgs> {}; kernelToOverride.overrideAttrs (o: {nativeBuildInputs=o.nativeBuildInputs ++ [ pkgconfig ncurses ];})' 90 + nix-shell -E 'with import <nixpkgs> {}; kernelToOverride.overrideAttrs (o: {nativeBuildInputs=o.nativeBuildInputs ++ [ pkg-config ncurses ];})' 91 91 ]]></screen> 92 92 or you can let nixpkgs generate the configuration. Nixpkgs generates it via 93 93 answering the interactive kernel utility <command>make config</command>. The