about summary refs log tree commit diff
path: root/pkgs/games/exult
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 12:49:22 +0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-16 23:49:59 -0800
commitbd42003f87ec12fd8d99ff6907bd2ca68333e5a9 (patch)
tree0a657636417d718e7b858e4c8f4289ec720a788e /pkgs/games/exult
parent76f93cc7313a1c32f7d76cf07c154e7bcafe251c (diff)
pkgs/games: pkg-config -> pkgconfig (2)
Diffstat (limited to 'pkgs/games/exult')
-rw-r--r--pkgs/games/exult/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/exult/default.nix b/pkgs/games/exult/default.nix
index 6dd9d711a2874..e16e62f82fb44 100644
--- a/pkgs/games/exult/default.nix
+++ b/pkgs/games/exult/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, pkgconfig, SDL2, libogg, libvorbis, zlib, unzip }:
+{ lib, stdenv, fetchurl, pkg-config, SDL2, libogg, libvorbis, zlib, unzip }:
 
 let
 
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = [ "--disable-tools" ];
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkg-config ];
   buildInputs = [ SDL2 libogg libvorbis zlib unzip ];
 
   enableParallelBuilding = true;