summary refs log tree commit diff
path: root/doc/languages-frameworks/emscripten.section.md
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/languages-frameworks/emscripten.section.md
parentd71bca5967722f48f207335181d9d55d43546edb (diff)
downloadnixpkgs-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar
nixpkgs-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.gz
nixpkgs-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.bz2
nixpkgs-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.lz
nixpkgs-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.xz
nixpkgs-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.tar.zst
nixpkgs-7c64854b231c4a37ebf85ceb4df5146d335fb5dd.zip
docs: pkgconfig -> pkg-config
Diffstat (limited to 'doc/languages-frameworks/emscripten.section.md')
-rw-r--r--doc/languages-frameworks/emscripten.section.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/languages-frameworks/emscripten.section.md b/doc/languages-frameworks/emscripten.section.md
index a5c15b43ac8..d391e038070 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";