lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

pkgs/misc: pkgconfig -> pkg-config

authored by

Ben Siraphob and committed by
Jonathan Ringer
fce00d15 5fffcef9

+154 -154
+2 -2
pkgs/misc/apulse/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, alsaLib, cmake, pkgconfig, glib 1 + { lib, stdenv, fetchFromGitHub, alsaLib, cmake, pkg-config, glib 2 2 , tracingSupport ? true, logToStderr ? true }: 3 3 4 4 let oz = x: if x then "1" else "0"; in ··· 14 14 sha256 = "1p6fh6ah5v3qz7dxhcsixx38bxg44ypbim4m03bxk3ls5i9xslmn"; 15 15 }; 16 16 17 - nativeBuildInputs = [ cmake pkgconfig ]; 17 + nativeBuildInputs = [ cmake pkg-config ]; 18 18 19 19 buildInputs = [ alsaLib glib ]; 20 20
+2 -2
pkgs/misc/apulse/pressureaudio.nix
··· 1 - { stdenv, apulse, libpulseaudio, pkgconfig, intltool, autoreconfHook }: 1 + { stdenv, apulse, libpulseaudio, pkg-config, intltool, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "libpressureaudio-${apulse.version}"; 5 5 6 6 src = libpulseaudio.src; 7 7 8 - nativeBuildInputs = [ pkgconfig intltool autoreconfHook ]; 8 + nativeBuildInputs = [ pkg-config intltool autoreconfHook ]; 9 9 10 10 dontConfigure = true; 11 11
+2 -2
pkgs/misc/barebox/default.nix
··· 7 7 , libusb1 8 8 , lzop 9 9 , openssl 10 - , pkgconfig 10 + , pkg-config 11 11 , buildPackages 12 12 }: 13 13 ··· 38 38 openssl 39 39 libusb1 40 40 lzop 41 - pkgconfig 41 + pkg-config 42 42 ]; 43 43 depsBuildBuild = [ buildPackages.stdenv.cc ]; 44 44
+2 -2
pkgs/misc/cups/cups-pk-helper.nix
··· 1 - { lib, stdenv, fetchurl, intltool, pkgconfig, glib, polkit, cups, fetchpatch }: 1 + { lib, stdenv, fetchurl, intltool, pkg-config, glib, polkit, cups, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "0.2.6"; ··· 9 9 sha256 = "0a52jw6rm7lr5nbyksiia0rn7sasyb5cjqcb95z1wxm2yprgi6lm"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig intltool ]; 12 + nativeBuildInputs = [ pkg-config intltool ]; 13 13 buildInputs = [ glib polkit cups ]; 14 14 15 15 patches = [
+2 -2
pkgs/misc/cups/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 - , pkgconfig 3 + , pkg-config 4 4 , removeReferencesTo 5 5 , zlib 6 6 , libjpeg ··· 48 48 --replace 'cupsFileFind("cat", "/bin' 'cupsFileFind("cat", "${coreutils}/bin' 49 49 ''; 50 50 51 - nativeBuildInputs = [ pkgconfig removeReferencesTo ]; 51 + nativeBuildInputs = [ pkg-config removeReferencesTo ]; 52 52 53 53 buildInputs = [ zlib libjpeg libpng libtiff libusb1 gnutls libpaper ] 54 54 ++ optionals stdenv.isLinux [ avahi pam dbus ]
+2 -2
pkgs/misc/cups/filters.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, cups, poppler, poppler_utils, fontconfig 1 + { lib, stdenv, fetchurl, pkg-config, cups, poppler, poppler_utils, fontconfig 2 2 , libjpeg, libpng, perl, ijs, qpdf, dbus, avahi 3 3 , makeWrapper, coreutils, gnused, bc, gawk, gnugrep, which, ghostscript 4 4 , mupdf ··· 16 16 sha256 = "1kv25011iyzvd33n5zmmn1z2p6pzk26hmmw6qvjjnx8p3sp7raqn"; 17 17 }; 18 18 19 - nativeBuildInputs = [ pkgconfig makeWrapper ]; 19 + nativeBuildInputs = [ pkg-config makeWrapper ]; 20 20 21 21 buildInputs = [ 22 22 cups poppler poppler_utils fontconfig libjpeg libpng perl
+2 -2
pkgs/misc/drivers/epkowa/default.nix
··· 3 3 , fetchpatch 4 4 , makeWrapper 5 5 , symlinkJoin 6 - , pkgconfig 6 + , pkg-config 7 7 , libtool 8 8 , gtk2 9 9 , libxml2 ··· 295 295 sha256 = "1ma76jj0k3bz0fy06fiyl4di4y77rcryb0mwjmzs5ms2vq9rjysr"; 296 296 }; 297 297 298 - nativeBuildInputs = [ pkgconfig ]; 298 + nativeBuildInputs = [ pkg-config ]; 299 299 buildInputs = [ 300 300 gtk2 301 301 libxml2
+2 -2
pkgs/misc/drivers/foomatic-filters/default.nix
··· 1 - { lib, stdenv, fetchpatch, fetchurl, pkgconfig, perl, cups, dbus, enscript }: 1 + { lib, stdenv, fetchpatch, fetchurl, pkg-config, perl, cups, dbus, enscript }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "foomatic-filters-4.0.17"; ··· 8 8 sha256 = "1qrkgbm5jay2r7sh9qbyf0aiyrsl1mdc844hxf7fhw95a0zfbqm2"; 9 9 }; 10 10 11 - nativeBuildInputs = [ pkgconfig ]; 11 + nativeBuildInputs = [ pkg-config ]; 12 12 buildInputs = [ perl cups dbus enscript ]; 13 13 14 14 patches = [
+2 -2
pkgs/misc/drivers/gutenprint/default.nix
··· 1 1 # this package was called gimp-print in the past 2 - { stdenv, lib, fetchurl, makeWrapper, pkgconfig 2 + { stdenv, lib, fetchurl, makeWrapper, pkg-config 3 3 , ijs, zlib 4 4 , gimp2Support ? false, gimp 5 5 , cupsSupport ? true, cups, libusb-compat-0_1, perl ··· 13 13 sha256 = "0s0b14hjwvbxksq7af5v8z9g2rfqv9jdmxd9d81m57f5mh6rad0p"; 14 14 }; 15 15 16 - nativeBuildInputs = [ makeWrapper pkgconfig ]; 16 + nativeBuildInputs = [ makeWrapper pkg-config ]; 17 17 buildInputs = 18 18 [ ijs zlib ] 19 19 ++ lib.optionals gimp2Support [ gimp.gtk gimp ]
+2 -2
pkgs/misc/drivers/hplip/3.16.11.nix
··· 1 1 { lib, stdenv, fetchurl, substituteAll 2 - , pkgconfig 2 + , pkg-config 3 3 , cups, libjpeg, libusb1, python2Packages, sane-backends, dbus, usbutils 4 4 , net-snmp, openssl, nettools 5 5 , bash, coreutils, util-linux ··· 60 60 ]; 61 61 62 62 nativeBuildInputs = [ 63 - pkgconfig 63 + pkg-config 64 64 ]; 65 65 66 66 pythonPath = with python2Packages; [
+2 -2
pkgs/misc/drivers/hplip/3.18.5.nix
··· 1 1 { lib, stdenv, fetchurl, substituteAll 2 - , pkgconfig 2 + , pkg-config 3 3 , cups, zlib, libjpeg, libusb1, python2Packages, sane-backends 4 4 , dbus, file, ghostscript, usbutils 5 5 , net-snmp, openssl, perl, nettools ··· 66 66 ]; 67 67 68 68 nativeBuildInputs = [ 69 - pkgconfig 69 + pkg-config 70 70 ]; 71 71 72 72 pythonPath = with python2Packages; [
+2 -2
pkgs/misc/drivers/hplip/default.nix
··· 1 1 { lib, stdenv, fetchurl, substituteAll 2 - , pkgconfig 2 + , pkg-config 3 3 , cups, zlib, libjpeg, libusb1, python3Packages, sane-backends 4 4 , dbus, file, ghostscript, usbutils 5 5 , net-snmp, openssl, perl, nettools, avahi ··· 69 69 ]; 70 70 71 71 nativeBuildInputs = [ 72 - pkgconfig 72 + pkg-config 73 73 removeReferencesTo 74 74 ] ++ lib.optional withQt5 qt5.wrapQtAppsHook; 75 75
+2 -2
pkgs/misc/drivers/xboxdrv/default.nix
··· 1 - { lib, stdenv, fetchurl, sconsPackages, libX11, pkgconfig 1 + { lib, stdenv, fetchurl, sconsPackages, libX11, pkg-config 2 2 , libusb1, boost, glib, dbus-glib }: 3 3 4 4 let ··· 13 13 }; 14 14 15 15 makeFlags = [ "PREFIX=$(out)" ]; 16 - nativeBuildInputs = [ pkgconfig sconsPackages.scons_3_1_2 ]; 16 + nativeBuildInputs = [ pkg-config sconsPackages.scons_3_1_2 ]; 17 17 buildInputs = [ libX11 libusb1 boost glib dbus-glib ]; 18 18 dontUseSconsInstall = true; 19 19
+2 -2
pkgs/misc/drivers/xwiimote/default.nix
··· 1 - { lib, stdenv, udev, ncurses, pkgconfig, fetchurl, bluez }: 1 + { lib, stdenv, udev, ncurses, pkg-config, fetchurl, bluez }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "xwiimote-2"; ··· 7 7 sha256 = "1g9cbhblll47l300zr999xr51x2g98y49l222f77fhswd12kjzhd"; 8 8 }; 9 9 10 - nativeBuildInputs = [ pkgconfig ]; 10 + nativeBuildInputs = [ pkg-config ]; 11 11 buildInputs = [ udev ncurses bluez ]; 12 12 13 13 configureFlags = [ "--with-doxygen=no" ];
+2 -2
pkgs/misc/emulators/attract-mode/default.nix
··· 1 1 { expat, fetchFromGitHub, ffmpeg_3, fontconfig, freetype, libarchive, libjpeg 2 - , libGLU, libGL, openal, pkgconfig, sfml, lib, stdenv, zlib 2 + , libGLU, libGL, openal, pkg-config, sfml, lib, stdenv, zlib 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 13 13 sha256 = "16p369j0hanm0l2fiy6h9d9pn0f3qblcy9l39all6h7rfxnhp9ii"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig ]; 16 + nativeBuildInputs = [ pkg-config ]; 17 17 18 18 patchPhase = '' 19 19 sed -i "s|prefix=/usr/local|prefix=$out|" Makefile
+2 -2
pkgs/misc/emulators/blastem/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchFromGitHub, pkgconfig, SDL2, glew, xcftools, python, pillow, makeWrapper }: 1 + { lib, stdenv, fetchurl, fetchFromGitHub, pkg-config, SDL2, glew, xcftools, python, pillow, makeWrapper }: 2 2 3 3 let 4 4 vasm = ··· 25 25 url = "https://www.retrodev.com/repos/blastem/archive/3d48cb0c28be.tar.gz"; 26 26 sha256 = "07wzbmzp0y8mh59jxg81q17gqagz3psxigxh8dmzsipgg68y6a8r"; 27 27 }; 28 - buildInputs = [ pkgconfig SDL2 glew xcftools python pillow vasm makeWrapper ]; 28 + buildInputs = [ pkg-config SDL2 glew xcftools python pillow vasm makeWrapper ]; 29 29 preBuild = '' 30 30 patchShebangs img2tiles.py 31 31 '';
+2 -2
pkgs/misc/emulators/caprice32/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, desktop-file-utils, libpng 2 - , pkgconfig, SDL, freetype, zlib }: 2 + , pkg-config, SDL, freetype, zlib }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 ··· 13 13 sha256 = "0hng5krwgc1h9bz1xlkp2hwnvas965nd7sb3z9mb2m6x9ghxlacz"; 14 14 }; 15 15 16 - nativeBuildInputs = [ desktop-file-utils pkgconfig ]; 16 + nativeBuildInputs = [ desktop-file-utils pkg-config ]; 17 17 buildInputs = [ libpng SDL freetype zlib ]; 18 18 19 19 makeFlags = [
+2 -2
pkgs/misc/emulators/cdemu/base.nix
··· 1 1 { pkgName, version, pkgSha256 }: 2 - { lib, stdenv, fetchurl, cmake, pkgconfig, buildInputs, drvParams ? {} }: 2 + { lib, stdenv, fetchurl, cmake, pkg-config, buildInputs, drvParams ? {} }: 3 3 let name = "${pkgName}-${version}"; 4 4 in stdenv.mkDerivation ({ 5 5 inherit name buildInputs; ··· 7 7 url = "mirror://sourceforge/cdemu/${name}.tar.bz2"; 8 8 sha256 = pkgSha256; 9 9 }; 10 - nativeBuildInputs = [ pkgconfig cmake ]; 10 + nativeBuildInputs = [ pkg-config cmake ]; 11 11 setSourceRoot = '' 12 12 mkdir build 13 13 cd build
+2 -2
pkgs/misc/emulators/cdemu/libmirage.nix
··· 1 - { callPackage, gobject-introspection, cmake, pkgconfig 1 + { callPackage, gobject-introspection, cmake, pkg-config 2 2 , glib, libsndfile, zlib, bzip2, lzma, libsamplerate, intltool 3 3 , pcre, util-linux, libselinux, libsepol }: 4 4 ··· 12 12 drvParams = { 13 13 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "${placeholder "out"}/share/gir-1.0"; 14 14 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "${placeholder "out"}/lib/girepository-1.0"; 15 - nativeBuildInputs = [ cmake gobject-introspection pkgconfig ]; 15 + nativeBuildInputs = [ cmake gobject-introspection pkg-config ]; 16 16 propagatedBuildInputs = [ pcre util-linux libselinux libsepol ]; 17 17 }; 18 18 }
+2 -2
pkgs/misc/emulators/desmume/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchpatch 2 - , pkgconfig, libtool, intltool 2 + , pkg-config, libtool, intltool 3 3 , libXmu 4 4 , lua 5 5 , tinyxml ··· 28 28 CXXFLAGS = "-fpermissive"; 29 29 30 30 buildInputs = 31 - [ pkgconfig libtool intltool libXmu lua agg alsaLib soundtouch 31 + [ pkg-config libtool intltool libXmu lua agg alsaLib soundtouch 32 32 openal desktop-file-utils gtk2 gtkglext libglade 33 33 libGLU libpcap SDL zziplib tinyxml ]; 34 34
+2 -2
pkgs/misc/emulators/dolphin-emu/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchpatch 4 - , pkgconfig 4 + , pkg-config 5 5 , cmake 6 6 , bluez 7 7 , ffmpeg_3 ··· 70 70 ]; 71 71 72 72 nativeBuildInputs = [ 73 - pkgconfig 73 + pkg-config 74 74 cmake 75 75 ]; 76 76
+2 -2
pkgs/misc/emulators/dolphin-emu/master.nix
··· 1 - { lib, stdenv, fetchFromGitHub, makeDesktopItem, pkgconfig, cmake 1 + { lib, stdenv, fetchFromGitHub, makeDesktopItem, pkg-config, cmake 2 2 , wrapQtAppsHook, qtbase, bluez, ffmpeg_3, libao, libGLU, libGL, pcre, gettext 3 3 , libXrandr, libusb1, lzo, libpthreadstubs, libXext, libXxf86vm, libXinerama 4 4 , libSM, libXdmcp, readline, openal, udev, libevdev, portaudio, curl, alsaLib ··· 30 30 sha256 = "0vv3ahk6zdx2hx5diq4jkhl289wjybqcr4lwinrkfiywb83hcabg"; 31 31 }; 32 32 33 - nativeBuildInputs = [ cmake pkgconfig ] 33 + nativeBuildInputs = [ cmake pkg-config ] 34 34 ++ lib.optional stdenv.isLinux wrapQtAppsHook; 35 35 36 36 buildInputs = [
+2 -2
pkgs/misc/emulators/emulationstation/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, cmake, curl, boost, eigen 1 + { lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, boost, eigen 2 2 , freeimage, freetype, libGLU, libGL, SDL2, alsaLib, libarchive 3 3 , fetchpatch }: 4 4 ··· 20 20 }) 21 21 ]; 22 22 23 - nativeBuildInputs = [ pkgconfig cmake ]; 23 + nativeBuildInputs = [ pkg-config cmake ]; 24 24 buildInputs = [ alsaLib boost curl eigen freeimage freetype libarchive libGLU libGL SDL2 ]; 25 25 26 26 installPhase = ''
+2 -2
pkgs/misc/emulators/fceux/default.nix
··· 1 - {lib, stdenv, fetchFromGitHub, scons, zlib, SDL, lua5_1, pkgconfig}: 1 + {lib, stdenv, fetchFromGitHub, scons, zlib, SDL, lua5_1, pkg-config}: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "fceux-unstable"; ··· 11 11 sha256 = "0gpz411dzfwx9mr34yi4zb1hphd5hha1nvwgzxki0sviwafca992"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig scons ]; 14 + nativeBuildInputs = [ pkg-config scons ]; 15 15 buildInputs = [ 16 16 zlib SDL lua5_1 17 17 ];
+2 -2
pkgs/misc/emulators/fs-uae/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig 1 + { lib, stdenv, fetchurl, pkg-config 2 2 , gettext, gtk2, SDL2, zlib, glib, openal, libGLU, libGL, lua, freetype, libmpeg2, zip }: 3 3 4 4 with lib; ··· 12 12 sha256 = "1qwzhp34wy7bnd3c0plv11rg9fs5m92rh3ffnr9pn6ng0cpc8vpj"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkgconfig ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 16 buildInputs = [ gettext gtk2 SDL2 zlib glib openal libGLU libGL lua freetype libmpeg2 zip ]; 17 17 18 18 meta = {
+2 -2
pkgs/misc/emulators/fuse-emulator/default.nix
··· 1 - { lib, stdenv, fetchurl, perl, pkgconfig, wrapGAppsHook 1 + { lib, stdenv, fetchurl, perl, pkg-config, wrapGAppsHook 2 2 , SDL, bzip2, glib, gtk3, libgcrypt, libpng, libspectrum, libxml2, zlib 3 3 }: 4 4 ··· 11 11 sha256 = "0kaynjr28w42n3iha60mgr7nxm49w8j0v49plyrc7ka24qzmiqph"; 12 12 }; 13 13 14 - nativeBuildInputs = [ perl pkgconfig wrapGAppsHook ]; 14 + nativeBuildInputs = [ perl pkg-config wrapGAppsHook ]; 15 15 16 16 buildInputs = [ SDL bzip2 glib gtk3 libgcrypt libpng libspectrum libxml2 zlib ]; 17 17
+2 -2
pkgs/misc/emulators/gens-gs/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, gtk2, SDL, nasm, zlib, libpng, libGLU, libGL }: 1 + { lib, stdenv, fetchurl, pkg-config, gtk2, SDL, nasm, zlib, libpng, libGLU, libGL }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "gens-gs-7"; ··· 8 8 sha256 = "1ha5s6d3y7s9aq9f4zmn9p88109c3mrj36z2w68jhiw5xrxws833"; 9 9 }; 10 10 11 - nativeBuildInputs = [ pkgconfig ]; 11 + nativeBuildInputs = [ pkg-config ]; 12 12 buildInputs = [ gtk2 SDL nasm zlib libpng libGLU libGL ]; 13 13 14 14 # Work around build failures on recent GTK.
+2 -2
pkgs/misc/emulators/higan/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , pkgconfig 2 + , pkg-config 3 3 , libX11, libXv 4 4 , udev 5 5 , libGLU, libGL, SDL2 ··· 36 36 done 37 37 ''; 38 38 39 - nativeBuildInputs = [ pkgconfig ] 39 + nativeBuildInputs = [ pkg-config ] 40 40 ++ optionals stdenv.isDarwin [ libicns ]; 41 41 42 42 buildInputs = [ SDL2 libao ]
+2 -2
pkgs/misc/emulators/mame/default.nix
··· 1 1 { stdenv, mkDerivation, fetchFromGitHub, makeDesktopItem, makeWrapper 2 - , python, pkgconfig, SDL2, SDL2_ttf, alsaLib, which, qtbase, libXinerama 2 + , python, pkg-config, SDL2, SDL2_ttf, alsaLib, which, qtbase, libXinerama 3 3 , libpcap, CoreAudioKit, ForceFeedback 4 4 , installShellFiles }: 5 5 ··· 46 46 ++ lib.optional stdenv.isLinux alsaLib 47 47 ++ lib.optionals stdenv.isDarwin [ libpcap CoreAudioKit ForceFeedback ] 48 48 ; 49 - nativeBuildInputs = [ python pkgconfig which makeWrapper installShellFiles ]; 49 + nativeBuildInputs = [ python pkg-config which makeWrapper installShellFiles ]; 50 50 51 51 # by default MAME assumes that paths with stock resources 52 52 # are relative and that you run MAME changing to
+2 -2
pkgs/misc/emulators/mednafen/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, freeglut, libGLU, libGL, libcdio, libjack2 1 + { lib, stdenv, fetchurl, pkg-config, freeglut, libGLU, libGL, libcdio, libjack2 2 2 , libsamplerate, libsndfile, libX11, SDL2, SDL2_net, zlib, alsaLib }: 3 3 4 4 stdenv.mkDerivation rec { ··· 10 10 sha256 = "1x7xhxjhwsdbak8l0iyb497f043xkhibk73w96xck4j2bk10fac4"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkgconfig ]; 13 + nativeBuildInputs = [ pkg-config ]; 14 14 15 15 buildInputs = [ 16 16 freeglut
+2 -2
pkgs/misc/emulators/mednaffe/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, makeWrapper, autoreconfHook, pkgconfig, wrapGAppsHook 1 + { lib, stdenv, fetchFromGitHub, makeWrapper, autoreconfHook, pkg-config, wrapGAppsHook 2 2 , gtk2 ? null, gtk3 ? null, mednafen }: 3 3 4 4 with lib; ··· 14 14 sha256 = "15qk3a3l1phr8bap2ayh3c0vyvw2jwhny1iz1ajq2adyjpm9fhr7"; 15 15 }; 16 16 17 - nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig wrapGAppsHook ]; 17 + nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config wrapGAppsHook ]; 18 18 buildInputs = [ gtk2 gtk3 mednafen ]; 19 19 20 20 configureFlags = [ (enableFeature (gtk3 != null) "gtk3") ];
+2 -2
pkgs/misc/emulators/melonDS/default.nix
··· 2 2 , fetchFromGitHub 3 3 , mkDerivation 4 4 , cmake 5 - , pkgconfig 5 + , pkg-config 6 6 , SDL2 7 7 , qtbase 8 8 , libpcap ··· 21 21 sha256 = "0m45m1ch0az8l3d3grjbqvi5vvydbffxwka9w3k3qiia50m7fnph"; 22 22 }; 23 23 24 - nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ]; 24 + nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ]; 25 25 buildInputs = [ 26 26 SDL2 27 27 qtbase
+2 -2
pkgs/misc/emulators/mgba/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, makeDesktopItem, wrapQtAppsHook, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, makeDesktopItem, wrapQtAppsHook, pkg-config 2 2 , cmake, epoxy, libzip, libelf, libedit, ffmpeg_3, SDL2, imagemagick 3 3 , qtbase, qtmultimedia, qttools, minizip }: 4 4 ··· 24 24 sha256 = "0nqj4bnn5c2z1bq4bnbw1wznc0wpmq4sy3w8pipd6n6620b9m4qq"; 25 25 }; 26 26 27 - nativeBuildInputs = [ wrapQtAppsHook pkgconfig cmake ]; 27 + nativeBuildInputs = [ wrapQtAppsHook pkg-config cmake ]; 28 28 29 29 buildInputs = [ 30 30 epoxy libzip libelf libedit ffmpeg_3 SDL2 imagemagick
+2 -2
pkgs/misc/emulators/mupen64plus/default.nix
··· 1 - {lib, stdenv, fetchurl, boost, dash, freetype, libpng, pkgconfig, SDL, which, zlib, nasm }: 1 + {lib, stdenv, fetchurl, boost, dash, freetype, libpng, pkg-config, SDL, which, zlib, nasm }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mupen64plus"; ··· 9 9 sha256 = "1a21n4gqdvag6krwcjm5bnyw5phrlxw6m0mk73jy53iq03f3s96m"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig nasm ]; 12 + nativeBuildInputs = [ pkg-config nasm ]; 13 13 buildInputs = [ boost dash freetype libpng SDL which zlib ]; 14 14 15 15 buildPhase = ''
+2 -2
pkgs/misc/emulators/nestopia/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, SDL2, alsaLib, gtk3 1 + { lib, stdenv, fetchFromGitHub, pkg-config, SDL2, alsaLib, gtk3 2 2 , makeWrapper, libGLU, libGL, libarchive, libao, unzip, xdg_utils 3 3 , epoxy, gdk-pixbuf, gnome3, wrapGAppsHook 4 4 }: ··· 34 34 ]; 35 35 36 36 nativeBuildInputs = [ 37 - pkgconfig 37 + pkg-config 38 38 makeWrapper 39 39 wrapGAppsHook 40 40 ];
+2 -2
pkgs/misc/emulators/openmsx/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, pkg-config 2 2 , python 3 3 , alsaLib, glew, libGL, libpng 4 4 , libogg, libtheora, libvorbis ··· 18 18 fetchSubmodules = true; 19 19 }; 20 20 21 - nativeBuildInputs = [ pkgconfig python ]; 21 + nativeBuildInputs = [ pkg-config python ]; 22 22 23 23 buildInputs = [ alsaLib glew libGL libpng 24 24 libogg libtheora libvorbis freetype
+2 -2
pkgs/misc/emulators/pcsx2/default.nix
··· 15 15 , libxml2 16 16 , makeWrapper 17 17 , perl 18 - , pkgconfig 18 + , pkg-config 19 19 , portaudio 20 20 , SDL2 21 21 , soundtouch ··· 68 68 --set __GL_THREADED_OPTIMIZATIONS 1 69 69 ''; 70 70 71 - nativeBuildInputs = [ cmake makeWrapper perl pkgconfig wrapGAppsHook ]; 71 + nativeBuildInputs = [ cmake makeWrapper perl pkg-config wrapGAppsHook ]; 72 72 73 73 buildInputs = [ 74 74 alsaLib
+2 -2
pkgs/misc/emulators/pcsxr/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, intltool, pkgconfig, gtk3, SDL2, xorg 1 + { lib, stdenv, fetchurl, autoreconfHook, intltool, pkg-config, gtk3, SDL2, xorg 2 2 , wrapGAppsHook, libcdio, nasm, ffmpeg, file 3 3 , fetchpatch }: 4 4 ··· 49 49 ./uncompress2.patch 50 50 ]; 51 51 52 - nativeBuildInputs = [ autoreconfHook intltool pkgconfig wrapGAppsHook ]; 52 + nativeBuildInputs = [ autoreconfHook intltool pkg-config wrapGAppsHook ]; 53 53 buildInputs = [ 54 54 gtk3 SDL2 xorg.libXv xorg.libXtst libcdio nasm ffmpeg file 55 55 ];
+2 -2
pkgs/misc/emulators/ppsspp/default.nix
··· 6 6 , lib 7 7 , libzip 8 8 , mkDerivation 9 - , pkgconfig 9 + , pkg-config 10 10 , python3 11 11 , qtbase 12 12 , qtmultimedia ··· 31 31 substituteInPlace UI/NativeApp.cpp --replace /usr/share $out/share 32 32 ''; 33 33 34 - nativeBuildInputs = [ cmake pkgconfig python3 ]; 34 + nativeBuildInputs = [ cmake pkg-config python3 ]; 35 35 36 36 buildInputs = [ 37 37 SDL2
+2 -2
pkgs/misc/emulators/qmc2/default.nix
··· 1 1 { lib, stdenv 2 - , fetchurl, qttools, pkgconfig 2 + , fetchurl, qttools, pkg-config 3 3 , minizip, zlib 4 4 , qtbase, qtsvg, qtmultimedia, qtwebkit, qttranslations, qtxmlpatterns 5 5 , rsync, SDL2, xwininfo ··· 20 20 patchShebangs scripts 21 21 ''; 22 22 23 - nativeBuildInputs = [ qttools pkgconfig ]; 23 + nativeBuildInputs = [ qttools pkg-config ]; 24 24 buildInputs = [ minizip qtbase qtsvg qtmultimedia qtwebkit 25 25 qttranslations qtxmlpatterns rsync SDL2 26 26 xwininfo zlib util-linux xorg.libxcb ];
+6 -6
pkgs/misc/emulators/retroarch/cores.nix
··· 1 - { lib, stdenv, fetchgit, fetchFromGitHub, fetchFromGitLab, fetchpatch, cmake, pkgconfig, makeWrapper, python27, python37, retroarch 1 + { lib, stdenv, fetchgit, fetchFromGitHub, fetchFromGitLab, fetchpatch, cmake, pkg-config, makeWrapper, python27, python37, retroarch 2 2 , alsaLib, fluidsynth, curl, hidapi, libGLU, gettext, glib, gtk2, portaudio, SDL, SDL_net, SDL2, SDL2_image, libGL 3 3 , ffmpeg_3, pcre, libevdev, libpng, libjpeg, libzip, udev, libvorbis, snappy, which, hexdump 4 4 , miniupnpc, sfml, xorg, zlib, nasm, libpcap, boost, icu, openssl ··· 288 288 }; 289 289 description = "Port of Citra to libretro"; 290 290 license = gpl2Plus; 291 - extraNativeBuildInputs = [ cmake pkgconfig ]; 291 + extraNativeBuildInputs = [ cmake pkg-config ]; 292 292 extraBuildInputs = [ libGLU libGL boost ]; 293 293 makefile = "Makefile"; 294 294 cmakeFlags = [ ··· 342 342 description = "Port of Dolphin to libretro"; 343 343 license = gpl2Plus; 344 344 345 - extraNativeBuildInputs = [ cmake curl pkgconfig ]; 345 + extraNativeBuildInputs = [ cmake curl pkg-config ]; 346 346 extraBuildInputs = [ 347 347 libGLU libGL pcre sfml 348 348 gettext hidapi ··· 838 838 }; 839 839 description = "ppsspp libretro port"; 840 840 license = gpl2; 841 - extraNativeBuildInputs = [ cmake pkgconfig ]; 841 + extraNativeBuildInputs = [ cmake pkg-config ]; 842 842 extraBuildInputs = [ libGLU libGL libzip ffmpeg_3 python37 snappy xorg.libX11 ]; 843 843 makefile = "Makefile"; 844 844 cmakeFlags = [ "-DLIBRETRO=ON -DUSE_SYSTEM_FFMPEG=ON -DUSE_SYSTEM_SNAPPY=ON -DUSE_SYSTEM_LIBZIP=ON -DOpenGL_GL_PREFERENCE=GLVND" ]; ··· 981 981 }; 982 982 description = "Port of Stella to libretro"; 983 983 license = gpl2; 984 - extraBuildInputs = [ libpng pkgconfig SDL ]; 984 + extraBuildInputs = [ libpng pkg-config SDL ]; 985 985 makefile = "Makefile"; 986 986 preBuild = "cd src/libretro"; 987 987 dontConfigure = true; ··· 1020 1020 }; 1021 1021 description = "Port of TIC-80 to libretro"; 1022 1022 license = mit; 1023 - extraNativeBuildInputs = [ cmake pkgconfig ]; 1023 + extraNativeBuildInputs = [ cmake pkg-config ]; 1024 1024 makefile = "Makefile"; 1025 1025 cmakeFlags = [ 1026 1026 "-DBUILD_LIBRETRO=ON"
+2 -2
pkgs/misc/emulators/retroarch/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, which, pkgconfig, makeWrapper 1 + { lib, stdenv, fetchFromGitHub, which, pkg-config, makeWrapper 2 2 , ffmpeg_3, libGLU, libGL, freetype, libxml2, python3 3 3 , libobjc, AppKit, Foundation 4 4 , alsaLib ? null ··· 32 32 rev = "v${version}"; 33 33 }; 34 34 35 - nativeBuildInputs = [ pkgconfig wayland ] 35 + nativeBuildInputs = [ pkg-config wayland ] 36 36 ++ optional withVulkan makeWrapper; 37 37 38 38 buildInputs = [ ffmpeg_3 freetype libxml2 libGLU libGL python3 SDL2 which ]
+2 -2
pkgs/misc/emulators/retrofe/default.nix
··· 1 - { lib, stdenv, fetchhg, cmake, glib, gst_all_1, makeWrapper, pkgconfig 1 + { lib, stdenv, fetchhg, cmake, glib, gst_all_1, makeWrapper, pkg-config 2 2 , python, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, sqlite, zlib, runtimeShell 3 3 }: 4 4 ··· 12 12 sha256 = "0cvsg07ff0fdqh5zgiv2fs7s6c98hn150kpxmpw5fn6jilaszwkm"; 13 13 }; 14 14 15 - nativeBuildInputs = [ cmake makeWrapper pkgconfig python ]; 15 + nativeBuildInputs = [ cmake makeWrapper pkg-config python ]; 16 16 17 17 buildInputs = [ 18 18 glib gst_all_1.gstreamer SDL2 SDL2_image SDL2_mixer SDL2_ttf sqlite zlib
+2 -2
pkgs/misc/emulators/rpcs3/default.nix
··· 1 - { mkDerivation, lib, fetchgit, cmake, pkgconfig, git 1 + { mkDerivation, lib, fetchgit, cmake, pkg-config, git 2 2 , qtbase, qtquickcontrols, openal, glew, vulkan-headers, vulkan-loader, libpng 3 3 , ffmpeg, libevdev, python3 4 4 , pulseaudioSupport ? true, libpulseaudio ··· 35 35 "-DUSE_NATIVE_INSTRUCTIONS=OFF" 36 36 ]; 37 37 38 - nativeBuildInputs = [ cmake pkgconfig git ]; 38 + nativeBuildInputs = [ cmake pkg-config git ]; 39 39 40 40 buildInputs = [ 41 41 qtbase qtquickcontrols openal glew vulkan-headers vulkan-loader libpng ffmpeg
+2 -2
pkgs/misc/emulators/snes9x-gtk/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, ninja, pkgconfig, wrapGAppsHook 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, wrapGAppsHook 2 2 , SDL2, zlib, gtk3, libxml2, libXv, epoxy, minizip, pulseaudio, portaudio }: 3 3 4 4 stdenv.mkDerivation rec { ··· 13 13 }; 14 14 15 15 enableParallelBuilding = true; 16 - nativeBuildInputs = [ meson ninja pkgconfig wrapGAppsHook ]; 16 + nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook ]; 17 17 buildInputs = [ SDL2 zlib gtk3 libxml2 libXv epoxy minizip pulseaudio portaudio ]; 18 18 19 19 preConfigure = "cd gtk";
+6 -6
pkgs/misc/emulators/tilem/default.nix
··· 3 3 , lib 4 4 , libarchive 5 5 , autoreconfHook 6 - , pkgconfig 6 + , pkg-config 7 7 , glib 8 8 , libusb1 9 9 , darwin ··· 20 20 url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2"; 21 21 sha256 = "0y080v12bm81wgjm6fnw7q0yg7scphm8hhrls9njcszj7fkscv9i"; 22 22 }; 23 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 23 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 24 24 buildInputs = [ glib ]; 25 25 configureFlags = [ "--enable-iconv" ]; 26 26 }; ··· 31 31 url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2"; 32 32 sha256 = "08j5di0cgix9vcpdv7b8xhxdjkk9zz7fqfnv3l4apk3jdr8vcvqc"; 33 33 }; 34 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 34 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 35 35 buildInputs = [ glib libusb1 ]; 36 36 configureFlags = [ "--enable-libusb10" ]; 37 37 }; ··· 42 42 url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2"; 43 43 sha256 = "08c9wgrdnyqcs45mx1bjb8riqq81bzfkhgaijxzn96rhpj40fy3n"; 44 44 }; 45 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 45 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 46 46 buildInputs = [ glib libticables2 libticonv libtifiles2 lzma bzip2 ] 47 47 ++ lib.optionals stdenv.isLinux [ acl ] 48 48 ++ lib.optionals stdenv.isDarwin [ darwin.libobjc ]; ··· 54 54 url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2"; 55 55 sha256 = "10n9mhlabmaw3ha5ckllxfy6fygs2pmlmj5v6w5v62bvx54kpils"; 56 56 }; 57 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 57 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 58 58 buildInputs = [ glib libticonv libarchive lzma bzip2 ]; 59 59 }; 60 60 in ··· 65 65 url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2"; 66 66 sha256 = "1ba38xzhp3yf21ip3cgql6jzy49jc34sfnjsl4syxyrd81d269zw"; 67 67 }; 68 - nativeBuildInputs = [ pkgconfig ]; 68 + nativeBuildInputs = [ pkg-config ]; 69 69 buildInputs = [ glib gnome2.gtk libticonv libtifiles2 libticables2 libticalcs2 ]; 70 70 NIX_CFLAGS_COMPILE = [ "-lm" ]; 71 71 meta = with lib; {
+2 -2
pkgs/misc/emulators/uae/default.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig, gtk2, alsaLib, SDL}: 1 + {lib, stdenv, fetchurl, pkg-config, gtk2, alsaLib, SDL}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "uae-0.8.29"; ··· 10 10 11 11 configureFlags = [ "--with-sdl" "--with-sdl-sound" "--with-sdl-gfx" "--with-alsa" ]; 12 12 13 - nativeBuildInputs = [ pkgconfig ]; 13 + nativeBuildInputs = [ pkg-config ]; 14 14 buildInputs = [ gtk2 alsaLib SDL ]; 15 15 16 16 hardeningDisable = [ "format" ];
+2 -2
pkgs/misc/emulators/vbam/default.nix
··· 6 6 , gettext 7 7 , libGLU, libGL 8 8 , openal 9 - , pkgconfig 9 + , pkg-config 10 10 , SDL2 11 11 , sfml 12 12 , zip ··· 23 23 sha256 = "1kgpbvng3c12ws0dy92zc0azd94h0i3j4vm7b67zc8mi3pqsppdg"; 24 24 }; 25 25 26 - nativeBuildInputs = [ cmake pkgconfig ]; 26 + nativeBuildInputs = [ cmake pkg-config ]; 27 27 28 28 buildInputs = [ 29 29 cairo
+2 -2
pkgs/misc/emulators/vice/default.nix
··· 1 1 { lib, stdenv, fetchurl, bison, flex, perl, libpng, giflib, libjpeg, alsaLib, readline, libGLU, libGL, libXaw 2 - , pkgconfig, gtk2, SDL, autoreconfHook, makeDesktopItem 2 + , pkg-config, gtk2, SDL, autoreconfHook, makeDesktopItem 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 11 11 }; 12 12 13 13 buildInputs = [ bison flex perl libpng giflib libjpeg alsaLib readline libGLU libGL 14 - pkgconfig gtk2 SDL autoreconfHook libXaw ]; 14 + pkg-config gtk2 SDL autoreconfHook libXaw ]; 15 15 dontDisableStatic = true; 16 16 configureFlags = [ "--enable-fullscreen --enable-gnomeui" ]; 17 17
+2 -2
pkgs/misc/emulators/xcpc/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, glib, libXaw, libX11, libXext 1 + { lib, stdenv, fetchurl, pkg-config, glib, libXaw, libX11, libXext 2 2 , libDSKSupport ? true, libdsk 3 3 , motifSupport ? false, lesstif 4 4 }: ··· 13 13 sha256 = "0hxsbhmyzyyrlidgg0q8izw55q0z40xrynw5a1c3frdnihj9jf7n"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig ]; 16 + nativeBuildInputs = [ pkg-config ]; 17 17 18 18 buildInputs = [ glib libdsk libXaw libX11 libXext ] 19 19 ++ optional libDSKSupport libdsk
+2 -2
pkgs/misc/emulators/yabause/default.nix
··· 1 - { mkDerivation, lib, stdenv, fetchurl, cmake, pkgconfig, qtbase, qt5, libGLU, libGL 1 + { mkDerivation, lib, stdenv, fetchurl, cmake, pkg-config, qtbase, qt5, libGLU, libGL 2 2 , freeglut ? null, openal ? null, SDL2 ? null }: 3 3 4 4 mkDerivation rec { ··· 10 10 sha256 = "1cn2rjjb7d9pkr4g5bqz55vd4pzyb7hg94cfmixjkzzkw0zw8d23"; 11 11 }; 12 12 13 - nativeBuildInputs = [ cmake pkgconfig ]; 13 + nativeBuildInputs = [ cmake pkg-config ]; 14 14 buildInputs = [ qtbase qt5.qtmultimedia libGLU libGL freeglut openal SDL2 ]; 15 15 16 16 patches = [
+2 -2
pkgs/misc/emulators/yuzu/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , cmake, pkgconfig, wrapQtAppsHook 2 + , cmake, pkg-config, wrapQtAppsHook 3 3 , boost173, catch2, fmt, lz4, nlohmann_json, rapidjson, zlib, zstd, SDL2 4 4 , udev, libusb1, libzip, qtbase, qtwebengine, qttools, ffmpeg 5 5 , libpulseaudio, libjack2, alsaLib, sndio, ecasound ··· 18 18 fetchSubmodules = true; 19 19 }; 20 20 21 - nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ]; 21 + nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; 22 22 buildInputs = [ qtbase qtwebengine qttools boost173 catch2 fmt lz4 nlohmann_json rapidjson zlib zstd SDL2 udev libusb1 libpulseaudio alsaLib sndio ecasound libjack2 libzip ffmpeg ] 23 23 ++ lib.optionals useVulkan [ vulkan-loader vulkan-headers ]; 24 24 cmakeFlags = [ "-DENABLE_QT_TRANSLATION=ON" "-DYUZU_USE_QT_WEB_ENGINE=ON" "-DUSE_DISCORD_PRESENCE=ON" ]
+2 -2
pkgs/misc/gnash/default.nix
··· 1 1 { lib, stdenv, fetchgit, fetchpatch, autoreconfHook 2 - , pkgconfig, libtool, boost, SDL 2 + , pkg-config, libtool, boost, SDL 3 3 , glib, pango, gettext, curl, xorg 4 4 , libpng, libjpeg, giflib, speex, atk 5 5 ··· 80 80 sed -i 's|jemalloc.h|jemalloc/jemalloc.h|' libbase/jemalloc_gnash.c 81 81 ''; 82 82 83 - nativeBuildInputs = [ autoreconfHook pkgconfig libtool ]; 83 + nativeBuildInputs = [ autoreconfHook pkg-config libtool ]; 84 84 buildInputs = [ 85 85 glib gettext boost curl SDL speex 86 86 xorg.libXmu xorg.libSM xorg.libXt
+2 -2
pkgs/misc/hdt/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, libtool, pkgconfig, zlib, serd }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, libtool, pkg-config, zlib, serd }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "hdt"; ··· 13 13 14 14 buildInputs = [ zlib serd ]; 15 15 16 - nativeBuildInputs = [ autoreconfHook libtool pkgconfig ]; 16 + nativeBuildInputs = [ autoreconfHook libtool pkg-config ]; 17 17 18 18 enableParallelBuilding = true; 19 19
+2 -2
pkgs/misc/jackaudio/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, python3Packages, makeWrapper 1 + { lib, stdenv, fetchFromGitHub, pkg-config, python3Packages, makeWrapper 2 2 , bash, libsamplerate, libsndfile, readline, eigen, celt 3 3 , wafHook 4 4 # Darwin Dependencies ··· 36 36 sha256 = "0pzgrjy5fi2nif2j442fs3j2bbshxpnmq9kzwcqz54wx1w8fzdfr"; 37 37 }; 38 38 39 - nativeBuildInputs = [ pkgconfig python makeWrapper wafHook ]; 39 + nativeBuildInputs = [ pkg-config python makeWrapper wafHook ]; 40 40 buildInputs = [ libsamplerate libsndfile readline eigen celt 41 41 optDbus optPythonDBus optLibffado optAlsaLib optLibopus 42 42 ] ++ optionals stdenv.isDarwin [
+2 -2
pkgs/misc/jackaudio/jack1.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig 1 + { lib, stdenv, fetchurl, pkg-config 2 2 3 3 # Optional Dependencies 4 4 , alsaLib ? null, db ? null, libuuid ? null, libffado ? null, celt ? null ··· 26 26 (lib.enableFeature (optLibffado != null) "firewire") 27 27 ]; 28 28 29 - nativeBuildInputs = [ pkgconfig ]; 29 + nativeBuildInputs = [ pkg-config ]; 30 30 buildInputs = [ optAlsaLib optDb optLibffado optCelt ]; 31 31 propagatedBuildInputs = [ optLibuuid ]; 32 32
+2 -2
pkgs/misc/libcardiacarrest/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, glib, libpulseaudio }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, glib, libpulseaudio }: 2 2 3 3 with lib; 4 4 ··· 15 15 16 16 outputs = [ "out" "dev" ]; 17 17 18 - nativeBuildInputs = [ pkgconfig ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 19 20 20 buildInputs = [ glib ]; 21 21
+2 -2
pkgs/misc/lightspark/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, cmake, curl, zlib, ffmpeg_3, glew, pcre 1 + { lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, zlib, ffmpeg_3, glew, pcre 2 2 , rtmpdump, cairo, boost, SDL2, SDL2_mixer, libjpeg, pango, lzma, nasm 3 3 , llvm, glibmm 4 4 }: ··· 18 18 sed -i 's/SET(ETCDIR "\/etc")/SET(ETCDIR "etc")/g' CMakeLists.txt 19 19 ''; 20 20 21 - nativeBuildInputs = [ pkgconfig cmake ]; 21 + nativeBuildInputs = [ pkg-config cmake ]; 22 22 23 23 buildInputs = [ 24 24 curl zlib ffmpeg_3 glew pcre rtmpdump cairo boost SDL2 SDL2_mixer libjpeg
+2 -2
pkgs/misc/lilypond/default.nix
··· 1 1 { stdenv, lib, fetchurl, ghostscript, gyre-fonts, texinfo, imagemagick, texi2html, guile 2 - , python2, gettext, flex, perl, bison, pkgconfig, autoreconfHook, dblatex 2 + , python2, gettext, flex, perl, bison, pkg-config, autoreconfHook, dblatex 3 3 , fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff 4 4 , makeWrapper, t1utils 5 5 , texlive, tex ? texlive.combine { ··· 47 47 export HOME=$TMPDIR/home 48 48 ''; 49 49 50 - nativeBuildInputs = [ autoreconfHook bison flex makeWrapper pkgconfig ]; 50 + nativeBuildInputs = [ autoreconfHook bison flex makeWrapper pkg-config ]; 51 51 52 52 buildInputs = 53 53 [ ghostscript texinfo imagemagick texi2html guile dblatex tex zip netpbm
+2 -2
pkgs/misc/rkdeveloptool/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1 }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libusb1 }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "rkdeveloptool"; ··· 11 11 sha256 = "0zwrkqfxd671iy69v3q0844gfdpm1yk51i9qh2rqc969bd8glxga"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 16 16 buildInputs = [ libusb1 ]; 17 17
+2 -2
pkgs/misc/sailsd/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, jansson }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, jansson }: 2 2 3 3 let 4 4 libsailing = fetchFromGitHub { ··· 18 18 sha256 = "1s4nlffp683binbdxwwzbsci61kbjylbcr1jf44sv1h1r5d5js05"; 19 19 }; 20 20 21 - nativeBuildInputs = [ pkgconfig ]; 21 + nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ jansson libsailing ]; 23 23 24 24 INSTALL_PATH = "$(out)";
+2 -2
pkgs/misc/screensavers/alock/default.nix
··· 1 - { lib, stdenv, fetchgit, pkgconfig, autoreconfHook 1 + { lib, stdenv, fetchgit, pkg-config, autoreconfHook 2 2 , libX11, pam, libgcrypt, libXrender, imlib2 }: 3 3 4 4 stdenv.mkDerivation rec { ··· 20 20 "--enable-imlib2" 21 21 ]; 22 22 23 - nativeBuildInputs = [ pkgconfig ]; 23 + nativeBuildInputs = [ pkg-config ]; 24 24 buildInputs = [ 25 25 autoreconfHook libX11 26 26 pam libgcrypt libXrender imlib2
+2 -2
pkgs/misc/screensavers/electricsheep/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook, wxGTK30, libav, lua5_1, curl 2 - , libpng, xorg, pkgconfig, flam3, libgtop, boost, tinyxml, freeglut, libGLU, libGL 2 + , libpng, xorg, pkg-config, flam3, libgtop, boost, tinyxml, freeglut, libGLU, libGL 3 3 , glee }: 4 4 5 5 stdenv.mkDerivation rec { ··· 13 13 sha256 = "1z49l53j1lhk7ahdy96lm9r0pklwpf2i5s6y2l2rn6l4z8dxkjmk"; 14 14 }; 15 15 16 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 16 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 17 17 18 18 buildInputs = [ 19 19 wxGTK30 libav lua5_1 curl libpng xorg.libXrender
+2 -2
pkgs/misc/screensavers/light-locker/default.nix
··· 3 3 , nix-update-script 4 4 , meson 5 5 , ninja 6 - , pkgconfig 6 + , pkg-config 7 7 , gtk3 8 8 , glib 9 9 , intltool ··· 34 34 intltool 35 35 meson 36 36 ninja 37 - pkgconfig 37 + pkg-config 38 38 wrapGAppsHook 39 39 ]; 40 40
+2 -2
pkgs/misc/screensavers/rss-glx/default.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig, xlibsWrapper, libXext, libGLU, libGL, imagemagick, libtiff, bzip2}: 1 + {lib, stdenv, fetchurl, pkg-config, xlibsWrapper, libXext, libGLU, libGL, imagemagick, libtiff, bzip2}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "0.9.1"; ··· 9 9 sha256 = "1aikafjqrfmv23jnrrm5d56dg6injh4l67zjdxzdapv9chw7g3cg"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ libGLU libGL xlibsWrapper imagemagick libtiff bzip2 ]; 14 14 15 15 NIX_CFLAGS_COMPILE = "-I${imagemagick.dev}/include/ImageMagick";
+2 -2
pkgs/misc/screensavers/xscreensaver/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, bc, perl, perlPackages, pam, libXext, libXScrnSaver, libX11 1 + { lib, stdenv, fetchurl, pkg-config, bc, perl, perlPackages, pam, libXext, libXScrnSaver, libX11 2 2 , libXrandr, libXmu, libXxf86vm, libXrender, libXxf86misc, libjpeg, libGLU, libGL, gtk2 3 3 , libxml2, libglade, intltool, xorg, makeWrapper, gle, gdk-pixbuf, gdk-pixbuf-xlib 4 4 , forceInstallAllHacks ? false ··· 14 14 }; 15 15 16 16 buildInputs = 17 - [ pkgconfig bc perl libjpeg libGLU libGL gtk2 libxml2 libglade pam 17 + [ pkg-config bc perl libjpeg libGLU libGL gtk2 libxml2 libglade pam 18 18 libXext libXScrnSaver libX11 libXrandr libXmu libXxf86vm libXrender 19 19 libXxf86misc intltool xorg.appres makeWrapper gle gdk-pixbuf 20 20 gdk-pixbuf-xlib
+2 -2
pkgs/misc/screensavers/xssproxy/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, glib, pkgconfig, xorg, dbus }: 1 + { lib, stdenv, fetchFromGitHub, glib, pkg-config, xorg, dbus }: 2 2 3 3 let rev = "1.0.0"; in 4 4 ··· 12 12 sha256 = "0c83wmipnsdnbihc5niyczs7jrkss2s8n6iwwjdia7hkjzbd0hl7"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkgconfig ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 16 buildInputs = [ glib xorg.libX11 xorg.libXScrnSaver dbus ]; 17 17 18 18 makeFlags = [
+2 -2
pkgs/misc/screensavers/xtrlock-pam/default.nix
··· 1 - { lib, stdenv, fetchgit, python, pkgconfig, xlibsWrapper, pam }: 1 + { lib, stdenv, fetchgit, python, pkg-config, xlibsWrapper, pam }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "xtrlock-pam-3.4-post-20150909"; ··· 9 9 sha256 = "1z2wlhi5d05b18pvwz146kp0lkcc6z2mnilk01mk19hzbziyqmsc"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ python xlibsWrapper pam ]; 14 14 15 15 configurePhase = ''
+2 -2
pkgs/misc/solfege/default.nix
··· 1 - { lib, fetchurl, gettext, pkgconfig, texinfo, wrapGAppsHook 1 + { lib, fetchurl, gettext, pkg-config, texinfo, wrapGAppsHook 2 2 , buildPythonApplication, pycairo, pygobject3 3 3 , gobject-introspection, gtk3, librsvg 4 4 , alsaUtils, timidity, mpg123, vorbis-tools, csound, lilypond ··· 19 19 ./webbrowser.patch 20 20 ]; 21 21 22 - nativeBuildInputs = [ gettext pkgconfig texinfo wrapGAppsHook ]; 22 + nativeBuildInputs = [ gettext pkg-config texinfo wrapGAppsHook ]; 23 23 buildInputs = [ gobject-introspection gtk3 librsvg ]; 24 24 propagatedBuildInputs = [ pycairo pygobject3 ]; 25 25
+2 -2
pkgs/misc/stabber/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, expat 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, expat 2 2 , libmicrohttpd 3 3 }: 4 4 ··· 19 19 mkdir m4 20 20 ''; 21 21 22 - buildInputs = [ autoreconfHook pkgconfig glib expat libmicrohttpd ]; 22 + buildInputs = [ autoreconfHook pkg-config glib expat libmicrohttpd ]; 23 23 24 24 meta = { 25 25 description = "Stubbed XMPP Server";
+2 -2
pkgs/misc/tpm2-pkcs11/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, substituteAll 2 - , pkgconfig, autoreconfHook, autoconf-archive, makeWrapper, patchelf 2 + , pkg-config, autoreconfHook, autoconf-archive, makeWrapper, patchelf 3 3 , tpm2-tss, tpm2-tools, opensc, openssl, sqlite, python37, glibc, libyaml 4 4 , abrmdSupport ? true, tpm2-abrmd ? null 5 5 }: ··· 29 29 ''; 30 30 31 31 nativeBuildInputs = [ 32 - pkgconfig autoreconfHook autoconf-archive makeWrapper patchelf 32 + pkg-config autoreconfHook autoconf-archive makeWrapper patchelf 33 33 ]; 34 34 buildInputs = [ 35 35 tpm2-tss tpm2-tools opensc openssl sqlite libyaml
+2 -2
pkgs/misc/urbit/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, curl, git, gmp, libsigsegv, meson, ncurses, ninja 2 - , openssl, pkgconfig, re2c, zlib 2 + , openssl, pkg-config, re2c, zlib 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 14 14 fetchSubmodules = true; 15 15 }; 16 16 17 - nativeBuildInputs = [ pkgconfig ninja meson ]; 17 + nativeBuildInputs = [ pkg-config ninja meson ]; 18 18 buildInputs = [ curl git gmp libsigsegv ncurses openssl re2c zlib ]; 19 19 20 20 postPatch = ''
+2 -2
pkgs/misc/vim-plugins/overrides.nix
··· 2 2 , python, cmake, meson, vim, ruby 3 3 , which, fetchFromGitHub, fetchgit, fetchurl, fetchzip, fetchpatch 4 4 , llvmPackages, rustPlatform, buildGoModule 5 - , pkgconfig, curl, openssl, libgit2, libiconv 5 + , pkg-config, curl, openssl, libgit2, libiconv 6 6 , xkb-switch, fzf, skim, stylish-haskell 7 7 , python3, boost, icu, ncurses 8 8 , ycmd, rake ··· 642 642 src = old.src; 643 643 644 644 nativeBuildInputs = [ 645 - pkgconfig 645 + pkg-config 646 646 ]; 647 647 648 648 buildInputs = [