pkgs/games: pkgconfig -> pkg-config

authored by Ben Siraphob and committed by Jonathan Ringer 47e99759 2fbc36f3

+28 -28
+2 -2
pkgs/games/alephone/default.nix
··· 1 { lib, stdenv, fetchurl, boost, curl, ffmpeg, icoutils, libGLU, libmad, libogg 2 - , libpng, libsndfile, libvorbis, lua, pkgconfig, SDL2, SDL2_image, SDL2_net 3 , SDL2_ttf, smpeg, speex, zziplib, zlib, makeWrapper, makeDesktopItem, unzip 4 , alephone }: 5 ··· 15 sha256 = "13ck3mp9qd5pkiq6zwvr744bwvmnqkgj5vpf325sz1mcvnv7l8lh"; 16 }; 17 18 - nativeBuildInputs = [ pkgconfig icoutils ]; 19 20 buildInputs = [ 21 boost
··· 1 { lib, stdenv, fetchurl, boost, curl, ffmpeg, icoutils, libGLU, libmad, libogg 2 + , libpng, libsndfile, libvorbis, lua, pkg-config, SDL2, SDL2_image, SDL2_net 3 , SDL2_ttf, smpeg, speex, zziplib, zlib, makeWrapper, makeDesktopItem, unzip 4 , alephone }: 5 ··· 15 sha256 = "13ck3mp9qd5pkiq6zwvr744bwvmnqkgj5vpf325sz1mcvnv7l8lh"; 16 }; 17 18 + nativeBuildInputs = [ pkg-config icoutils ]; 19 20 buildInputs = [ 21 boost
+2 -2
pkgs/games/asc/default.nix
··· 1 { fetchurl, lib, stdenv, SDL, SDL_image, SDL_mixer, SDL_sound, libsigcxx, physfs 2 - , boost, expat, freetype, libjpeg, wxGTK, lua, perl, pkgconfig, zlib, zip, bzip2 3 , libpng, libtiff, fluidsynth, libmikmod, libvorbis, flac, libogg }: 4 5 stdenv.mkDerivation rec { ··· 17 18 buildInputs = [ 19 SDL SDL_image SDL_mixer SDL_sound libsigcxx physfs boost expat 20 - freetype libjpeg wxGTK lua perl pkgconfig zlib zip bzip2 libpng 21 libtiff fluidsynth libmikmod flac libvorbis libogg 22 ]; 23
··· 1 { fetchurl, lib, stdenv, SDL, SDL_image, SDL_mixer, SDL_sound, libsigcxx, physfs 2 + , boost, expat, freetype, libjpeg, wxGTK, lua, perl, pkg-config, zlib, zip, bzip2 3 , libpng, libtiff, fluidsynth, libmikmod, libvorbis, flac, libogg }: 4 5 stdenv.mkDerivation rec { ··· 17 18 buildInputs = [ 19 SDL SDL_image SDL_mixer SDL_sound libsigcxx physfs boost expat 20 + freetype libjpeg wxGTK lua perl pkg-config zlib zip bzip2 libpng 21 libtiff fluidsynth libmikmod flac libvorbis libogg 22 ]; 23
+2 -2
pkgs/games/chocolate-doom/default.nix
··· 1 - { lib, stdenv, autoreconfHook, pkgconfig, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 pname = "chocolate-doom"; ··· 15 sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am 16 ''; 17 18 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 19 buildInputs = [ SDL2 SDL2_mixer SDL2_net ]; 20 enableParallelBuilding = true; 21
··· 1 + { lib, stdenv, autoreconfHook, pkg-config, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 pname = "chocolate-doom"; ··· 15 sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am 16 ''; 17 18 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 19 buildInputs = [ SDL2 SDL2_mixer SDL2_net ]; 20 enableParallelBuilding = true; 21
+2 -2
pkgs/games/crack-attack/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, gtk2, freeglut, SDL, SDL_mixer, libGLU, libGL, libXi, libXmu }: 2 3 stdenv.mkDerivation { 4 name = "crack-attack-1.1.14"; ··· 19 "--datadir=${placeholder "out"}/share" 20 ]; 21 22 - nativeBuildInputs = [ pkgconfig ]; 23 buildInputs = [ gtk2 freeglut SDL SDL_mixer libGLU libGL libXi libXmu ]; 24 25 hardeningDisable = [ "format" ];
··· 1 + { lib, stdenv, fetchurl, pkg-config, gtk2, freeglut, SDL, SDL_mixer, libGLU, libGL, libXi, libXmu }: 2 3 stdenv.mkDerivation { 4 name = "crack-attack-1.1.14"; ··· 19 "--datadir=${placeholder "out"}/share" 20 ]; 21 22 + nativeBuildInputs = [ pkg-config ]; 23 buildInputs = [ gtk2 freeglut SDL SDL_mixer libGLU libGL libXi libXmu ]; 24 25 hardeningDisable = [ "format" ];
+2 -2
pkgs/games/eduke32/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, pkgconfig, nasm, makeDesktopItem 2 , alsaLib, flac, gtk2, libvorbis, libvpx, libGLU, libGL 3 , SDL2, SDL2_mixer }: 4 ··· 29 30 buildInputs = [ alsaLib flac gtk2 libvorbis libvpx libGL libGLU SDL2 SDL2_mixer ]; 31 32 - nativeBuildInputs = [ makeWrapper pkgconfig ] 33 ++ lib.optional (stdenv.hostPlatform.system == "i686-linux") nasm; 34 35 postPatch = ''
··· 1 + { lib, stdenv, fetchurl, makeWrapper, pkg-config, nasm, makeDesktopItem 2 , alsaLib, flac, gtk2, libvorbis, libvpx, libGLU, libGL 3 , SDL2, SDL2_mixer }: 4 ··· 29 30 buildInputs = [ alsaLib flac gtk2 libvorbis libvpx libGL libGLU SDL2 SDL2_mixer ]; 31 32 + nativeBuildInputs = [ makeWrapper pkg-config ] 33 ++ lib.optional (stdenv.hostPlatform.system == "i686-linux") nasm; 34 35 postPatch = ''
+2 -2
pkgs/games/gargoyle/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, substituteAll, jam, cctools, pkgconfig 2 , SDL, SDL_mixer, SDL_sound, gtk2, libvorbis, smpeg }: 3 4 let ··· 30 sha256 = "0w54avmbp4i4zps2rb4acmpa641s6wvwbrln4vbdhcz97fx48nzz"; 31 }; 32 33 - nativeBuildInputs = [ jam pkgconfig ] ++ lib.optional stdenv.isDarwin cctools; 34 35 buildInputs = [ SDL SDL_mixer SDL_sound gtk2 ] 36 ++ lib.optionals stdenv.isDarwin [ smpeg libvorbis ];
··· 1 + { lib, stdenv, fetchFromGitHub, substituteAll, jam, cctools, pkg-config 2 , SDL, SDL_mixer, SDL_sound, gtk2, libvorbis, smpeg }: 3 4 let ··· 30 sha256 = "0w54avmbp4i4zps2rb4acmpa641s6wvwbrln4vbdhcz97fx48nzz"; 31 }; 32 33 + nativeBuildInputs = [ jam pkg-config ] ++ lib.optional stdenv.isDarwin cctools; 34 35 buildInputs = [ SDL SDL_mixer SDL_sound gtk2 ] 36 ++ lib.optionals stdenv.isDarwin [ smpeg libvorbis ];
+2 -2
pkgs/games/gweled/default.nix
··· 1 { lib, stdenv, fetchbzr, intltool 2 - , gtk2, wrapGAppsHook, autoreconfHook, pkgconfig 3 , libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }: 4 5 stdenv.mkDerivation rec { ··· 14 15 doCheck = false; 16 17 - nativeBuildInputs = [ wrapGAppsHook intltool autoreconfHook pkgconfig ]; 18 19 buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ]; 20
··· 1 { lib, stdenv, fetchbzr, intltool 2 + , gtk2, wrapGAppsHook, autoreconfHook, pkg-config 3 , libmikmod, librsvg, libcanberra-gtk2, hicolor-icon-theme }: 4 5 stdenv.mkDerivation rec { ··· 14 15 doCheck = false; 16 17 + nativeBuildInputs = [ wrapGAppsHook intltool autoreconfHook pkg-config ]; 18 19 buildInputs = [ gtk2 libmikmod librsvg hicolor-icon-theme libcanberra-gtk2 ]; 20
+2 -2
pkgs/games/lincity/ng.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, jam, pkgconfig 2 , zlib, libxml2, libxslt, xorgproto, libX11, libGLU, libGL, SDL 3 , SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs 4 }: ··· 17 hardeningDisable = [ "format" ]; 18 19 nativeBuildInputs = [ 20 - autoreconfHook jam pkgconfig 21 ]; 22 23 buildInputs = [
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, jam, pkg-config 2 , zlib, libxml2, libxslt, xorgproto, libX11, libGLU, libGL, SDL 3 , SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs 4 }: ··· 17 hardeningDisable = [ "format" ]; 18 19 nativeBuildInputs = [ 20 + autoreconfHook jam pkg-config 21 ]; 22 23 buildInputs = [
+2 -2
pkgs/games/naev/default.nix
··· 1 - { lib, fetchurl, stdenv, SDL, openal, SDL_mixer, libxml2, pkgconfig, libvorbis 2 , libpng, libGLU, libGL, makeWrapper, zlib, freetype }: 3 4 let ··· 21 22 buildInputs = [ SDL SDL_mixer openal libxml2 libvorbis libpng libGLU libGL zlib freetype ]; 23 24 - nativeBuildInputs = [ pkgconfig makeWrapper ]; 25 26 NIX_CFLAGS_COMPILE="-include ${zlib.dev}/include/zlib.h"; 27
··· 1 + { lib, fetchurl, stdenv, SDL, openal, SDL_mixer, libxml2, pkg-config, libvorbis 2 , libpng, libGLU, libGL, makeWrapper, zlib, freetype }: 3 4 let ··· 21 22 buildInputs = [ SDL SDL_mixer openal libxml2 libvorbis libpng libGLU libGL zlib freetype ]; 23 24 + nativeBuildInputs = [ pkg-config makeWrapper ]; 25 26 NIX_CFLAGS_COMPILE="-include ${zlib.dev}/include/zlib.h"; 27
+2 -2
pkgs/games/nudoku/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gettext, ncurses }: 2 3 stdenv.mkDerivation rec { 4 pname = "nudoku"; ··· 16 substituteInPlace configure.ac --replace 0.19 0.20 17 ''; 18 19 - nativeBuildInputs = [ autoreconfHook pkgconfig gettext ]; 20 buildInputs = [ ncurses ]; 21 22 configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-nls";
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gettext, ncurses }: 2 3 stdenv.mkDerivation rec { 4 pname = "nudoku"; ··· 16 substituteInPlace configure.ac --replace 0.19 0.20 17 ''; 18 19 + nativeBuildInputs = [ autoreconfHook pkg-config gettext ]; 20 buildInputs = [ ncurses ]; 21 22 configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-nls";
+2 -2
pkgs/games/openrct2/default.nix
··· 1 { lib, stdenv, fetchFromGitHub 2 , SDL2, cmake, curl, duktape, fontconfig, freetype, icu, jansson, libGLU 3 - , libiconv, libpng, libpthreadstubs, libzip, nlohmann_json, openssl, pkgconfig 4 , speexdsp, zlib 5 }: 6 ··· 36 37 nativeBuildInputs = [ 38 cmake 39 - pkgconfig 40 ]; 41 42 buildInputs = [
··· 1 { lib, stdenv, fetchFromGitHub 2 , SDL2, cmake, curl, duktape, fontconfig, freetype, icu, jansson, libGLU 3 + , libiconv, libpng, libpthreadstubs, libzip, nlohmann_json, openssl, pkg-config 4 , speexdsp, zlib 5 }: 6 ··· 36 37 nativeBuildInputs = [ 38 cmake 39 + pkg-config 40 ]; 41 42 buildInputs = [
+2 -2
pkgs/games/t4kcommon/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, cmake, pkgconfig, SDL, SDL_image, SDL_mixer, SDL_net, SDL_ttf, libpng, librsvg, libxml2 }: 2 3 stdenv.mkDerivation rec { 4 version = "0.1.1"; ··· 19 }) 20 ]; 21 22 - nativeBuildInputs = [ cmake pkgconfig ]; 23 buildInputs = [ SDL SDL_image SDL_mixer SDL_net SDL_ttf libpng librsvg libxml2 ]; 24 25 meta = with lib; {
··· 1 + { lib, stdenv, fetchFromGitHub, fetchurl, cmake, pkg-config, SDL, SDL_image, SDL_mixer, SDL_net, SDL_ttf, libpng, librsvg, libxml2 }: 2 3 stdenv.mkDerivation rec { 4 version = "0.1.1"; ··· 19 }) 20 ]; 21 22 + nativeBuildInputs = [ cmake pkg-config ]; 23 buildInputs = [ SDL SDL_image SDL_mixer SDL_net SDL_ttf libpng librsvg libxml2 ]; 24 25 meta = with lib; {
+2 -2
pkgs/games/taisei/default.nix
··· 1 { lib, stdenv, fetchurl 2 # Build depends 3 - , docutils, meson, ninja, pkgconfig, python3 4 # Runtime depends 5 , glfw, SDL2, SDL2_mixer 6 , freetype, libpng, libwebp, libzip, zlib ··· 16 }; 17 18 nativeBuildInputs = [ 19 - docutils meson ninja pkgconfig python3 20 ]; 21 22 buildInputs = [
··· 1 { lib, stdenv, fetchurl 2 # Build depends 3 + , docutils, meson, ninja, pkg-config, python3 4 # Runtime depends 5 , glfw, SDL2, SDL2_mixer 6 , freetype, libpng, libwebp, libzip, zlib ··· 16 }; 17 18 nativeBuildInputs = [ 19 + docutils meson ninja pkg-config python3 20 ]; 21 22 buildInputs = [
+2 -2
pkgs/games/the-powder-toy/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, scons, pkgconfig, SDL2, lua, fftwFloat, 2 zlib, bzip2, curl, darwin }: 3 4 stdenv.mkDerivation rec { ··· 12 sha256 = "18rp2g1mj0gklra06wm9dm57h73hmm301npndh0y8ap192i5s8sa"; 13 }; 14 15 - nativeBuildInputs = [ scons pkgconfig ]; 16 17 propagatedBuildInputs = lib.optionals stdenv.isDarwin 18 [ darwin.apple_sdk.frameworks.Cocoa ];
··· 1 + { lib, stdenv, fetchFromGitHub, scons, pkg-config, SDL2, lua, fftwFloat, 2 zlib, bzip2, curl, darwin }: 3 4 stdenv.mkDerivation rec { ··· 12 sha256 = "18rp2g1mj0gklra06wm9dm57h73hmm301npndh0y8ap192i5s8sa"; 13 }; 14 15 + nativeBuildInputs = [ scons pkg-config ]; 16 17 propagatedBuildInputs = lib.optionals stdenv.isDarwin 18 [ darwin.apple_sdk.frameworks.Cocoa ];