summary refs log tree commit diff
path: root/pkgs/tools/misc/grub
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 10:51:22 +0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-16 23:49:59 -0800
commit76f93cc7313a1c32f7d76cf07c154e7bcafe251c (patch)
tree5582d94717ada25917f084cdd550ec900e90e82c /pkgs/tools/misc/grub
parentfce00d15c2521710ac1043d6b5251803fb9a8808 (diff)
downloadnixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.gz
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.bz2
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.lz
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.xz
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.tar.zst
nixpkgs-76f93cc7313a1c32f7d76cf07c154e7bcafe251c.zip
pkgs/tools: pkgconfig -> pkg-config
Diffstat (limited to 'pkgs/tools/misc/grub')
-rw-r--r--pkgs/tools/misc/grub/2.0x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/grub/2.0x.nix b/pkgs/tools/misc/grub/2.0x.nix
index d3761f34cda..a94275d7e35 100644
--- a/pkgs/tools/misc/grub/2.0x.nix
+++ b/pkgs/tools/misc/grub/2.0x.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchgit, flex, bison, python3, autoconf, automake, gnulib, libtool
-, gettext, ncurses, libusb-compat-0_1, freetype, qemu, lvm2, unifont, pkgconfig
+, gettext, ncurses, libusb-compat-0_1, freetype, qemu, lvm2, unifont, pkg-config
 , fuse # only needed for grub-mount
 , zfs ? null
 , efiSupport ? false
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
     ./fix-bash-completion.patch
   ];
 
-  nativeBuildInputs = [ bison flex python3 pkgconfig autoconf automake ];
+  nativeBuildInputs = [ bison flex python3 pkg-config autoconf automake ];
   buildInputs = [ ncurses libusb-compat-0_1 freetype gettext lvm2 fuse libtool ]
     ++ optional doCheck qemu
     ++ optional zfsSupport zfs;