diff options
author | Ben Siraphob | 2021-01-17 12:49:22 +0700 |
---|---|---|
committer | Jonathan Ringer | 2021-01-16 23:49:59 -0800 |
commit | bd42003f87ec12fd8d99ff6907bd2ca68333e5a9 (patch) | |
tree | 0a657636417d718e7b858e4c8f4289ec720a788e /pkgs/games/freedink/default.nix | |
parent | 76f93cc7313a1c32f7d76cf07c154e7bcafe251c (diff) |
pkgs/games: pkg-config -> pkgconfig (2)
Diffstat (limited to 'pkgs/games/freedink/default.nix')
-rw-r--r-- | pkgs/games/freedink/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/freedink/default.nix b/pkgs/games/freedink/default.nix index fff8426c16a7..c80dc2b07034 100644 --- a/pkgs/games/freedink/default.nix +++ b/pkgs/games/freedink/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, SDL, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx -, pkgconfig, intltool, fontconfig, libzip, zip, zlib }: +, pkg-config, intltool, fontconfig, libzip, zip, zlib }: let version = "1.08.20121209"; @@ -27,7 +27,7 @@ in stdenv.mkDerivation rec { buildInputs = [ SDL SDL_mixer SDL_image SDL_ttf SDL_gfx - pkgconfig intltool fontconfig libzip zip zlib + pkg-config intltool fontconfig libzip zip zlib ]; preConfigure = '' |