about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-01-18 19:19:48 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-19 01:16:25 -0800
commit7c64854b231c4a37ebf85ceb4df5146d335fb5dd (patch)
tree9d523f5917ed6f153857f0b30ed8dc79cf9dda37 /doc
parentd71bca5967722f48f207335181d9d55d43546edb (diff)
downloadnixlib-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar
nixlib-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.gz
nixlib-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.bz2
nixlib-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.lz
nixlib-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.xz
nixlib-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.zst
nixlib-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.zip
docs: pkgconfig -> pkg-config
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/emscripten.section.md6
-rw-r--r--doc/languages-frameworks/rust.section.md4
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/languages-frameworks/emscripten.section.md b/doc/languages-frameworks/emscripten.section.md
index a5c15b43ac89..d391e038070d 100644
--- a/doc/languages-frameworks/emscripten.section.md
+++ b/doc/languages-frameworks/emscripten.section.md
@@ -60,7 +60,7 @@ See the `zlib` example:
       stdenv = pkgs.emscriptenStdenv;
     }).overrideDerivation
     (old: rec {
-      buildInputs = old.buildInputs ++ [ pkgconfig ];
+      buildInputs = old.buildInputs ++ [ pkg-config ];
       # we need to reset this setting!
       NIX_CFLAGS_COMPILE="";
       configurePhase = ''
@@ -117,8 +117,8 @@ This `xmlmirror` example features a emscriptenPackage which is defined completel
     xmlmirror = pkgs.buildEmscriptenPackage rec {
       name = "xmlmirror";
 
-      buildInputs = [ pkgconfig autoconf automake libtool gnumake libxml2 nodejs openjdk json_c ];
-      nativeBuildInputs = [ pkgconfig zlib ];
+      buildInputs = [ pkg-config autoconf automake libtool gnumake libxml2 nodejs openjdk json_c ];
+      nativeBuildInputs = [ pkg-config zlib ];
 
       src = pkgs.fetchgit {
         url = "https://gitlab.com/odfplugfest/xmlmirror.git";
diff --git a/doc/languages-frameworks/rust.section.md b/doc/languages-frameworks/rust.section.md
index dda8d485365e..550f2b576bd9 100644
--- a/doc/languages-frameworks/rust.section.md
+++ b/doc/languages-frameworks/rust.section.md
@@ -480,7 +480,7 @@ stdenv.mkDerivation {
     rustc cargo
 
     # Example Build-time Additional Dependencies
-    pkgconfig
+    pkg-config
   ];
   buildInputs = [
     # Example Run-time Additional Dependencies
@@ -522,7 +522,7 @@ stdenv.mkDerivation {
     latest.rustChannels.nightly.rust
 
     # Add some extra dependencies from `pkgs`
-    pkgconfig openssl
+    pkg-config openssl
   ];
 
   # Set Environment Variables