summary refs log tree commit diff
path: root/pkgs/tools/text/mdcat
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 16:17:16 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-17 23:27:27 +0700
commitd6aeae8f90a4935525915431e3b08ebf1b7d5bf3 (patch)
tree0376acde4a65afc15fccb505d35a9fc65fafe55c /pkgs/tools/text/mdcat
parent979e6e67d32a934dcc39dedfd588baf6e3f7ed78 (diff)
downloadnixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.gz
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.bz2
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.lz
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.xz
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.tar.zst
nixpkgs-d6aeae8f90a4935525915431e3b08ebf1b7d5bf3.zip
pkgs/tools: pkgconfig -> pkg-config (2)
Diffstat (limited to 'pkgs/tools/text/mdcat')
-rw-r--r--pkgs/tools/text/mdcat/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/mdcat/default.nix b/pkgs/tools/text/mdcat/default.nix
index 9ee52967b47..f6752938d46 100644
--- a/pkgs/tools/text/mdcat/default.nix
+++ b/pkgs/tools/text/mdcat/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv
 , fetchFromGitHub
 , rustPlatform
-, pkgconfig
+, pkg-config
 , asciidoctor
 , openssl
 , Security
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
     hash = "sha256-i36MYTMkbSuWxxlWUDsyYMay/4Mg7M5jEFhHM60UrkM=";
   };
 
-  nativeBuildInputs = [ pkgconfig asciidoctor installShellFiles ];
+  nativeBuildInputs = [ pkg-config asciidoctor installShellFiles ];
   buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
 
   cargoSha256 = "sha256-mnDUIJhEGNoh3eq2Vhww1T/tpZh9RP+RxbRsBNrpOzw=";