pkgs/applications: pkgconfig -> pkg-config

authored by Ben Siraphob and committed by Jonathan Ringer 5d566c43 47e99759

+755 -755
+2 -2
pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix
··· 1 - { lib, stdenv, fetchgit, pkgconfig, linkFarm, lightdm-enso-os-greeter 1 + { lib, stdenv, fetchgit, pkg-config, linkFarm, lightdm-enso-os-greeter 2 2 , dbus, pcre, epoxy, libXdmcp, at-spi2-core, libxklavier, libxkbcommon, libpthreadstubs 3 3 , gtk3, vala, cmake, libgee, libX11, lightdm, gdk-pixbuf, clutter-gtk, wrapGAppsHook, librsvg }: 4 4 ··· 18 18 19 19 nativeBuildInputs = [ 20 20 cmake 21 - pkgconfig 21 + pkg-config 22 22 vala 23 23 wrapGAppsHook 24 24 ];
+2 -2
pkgs/applications/display-managers/lightdm-mini-greeter/default.nix
··· 1 - { lib, stdenv, linkFarm, lightdm-mini-greeter, fetchFromGitHub, autoreconfHook, pkgconfig, lightdm, gtk3, glib, gdk-pixbuf, wrapGAppsHook, librsvg }: 1 + { lib, stdenv, linkFarm, lightdm-mini-greeter, fetchFromGitHub, autoreconfHook, pkg-config, lightdm, gtk3, glib, gdk-pixbuf, wrapGAppsHook, librsvg }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lightdm-mini-greeter"; ··· 11 11 sha256 = "10hga7pmfyjdvj4xwm3djwrhk50brcpycj3p3c57pa0vnx4ill3s"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ]; 15 15 buildInputs = [ lightdm gtk3 glib gdk-pixbuf librsvg ]; 16 16 17 17 configureFlags = [ "--sysconfdir=/etc" ];
+2 -2
pkgs/applications/display-managers/lightdm-tiny-greeter/default.nix
··· 1 1 { lib, stdenv, linkFarm, lightdm-tiny-greeter, fetchFromGitHub 2 - , pkgconfig, lightdm, gtk3, glib, wrapGAppsHook, conf ? "" }: 2 + , pkg-config, lightdm, gtk3, glib, wrapGAppsHook, conf ? "" }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "lightdm-tiny-greeter"; ··· 12 12 sha256 = "08azpj7b5qgac9bgi1xvd6qy6x2nb7iapa0v40ggr3d1fabyhrg6"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 15 + nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 16 16 buildInputs = [ lightdm gtk3 glib ]; 17 17 18 18 postUnpack = if conf != "" then ''
+2 -2
pkgs/applications/display-managers/lightdm/default.nix
··· 4 4 , substituteAll 5 5 , plymouth 6 6 , pam 7 - , pkgconfig 7 + , pkg-config 8 8 , autoconf 9 9 , automake 10 10 , libtool ··· 56 56 intltool 57 57 itstool 58 58 libtool 59 - pkgconfig 59 + pkg-config 60 60 vala 61 61 ]; 62 62
+2 -2
pkgs/applications/display-managers/lightdm/gtk-greeter.nix
··· 2 2 , lightdm_gtk_greeter 3 3 , fetchurl 4 4 , lightdm 5 - , pkgconfig 5 + , pkg-config 6 6 , intltool 7 7 , linkFarm 8 8 , wrapGAppsHook ··· 31 31 sha256 = "1g7wc3d3vqfa7mrdhx1w9ywydgjbffla6rbrxq9k3sc62br97qms"; 32 32 }; 33 33 34 - nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ]; 34 + nativeBuildInputs = [ pkg-config intltool wrapGAppsHook ]; 35 35 buildInputs = [ lightdm exo librsvg hicolor-icon-theme ] 36 36 ++ (if useGTK2 then [ gtk2 ] else [ gtk3 ]); 37 37
+2 -2
pkgs/applications/display-managers/sddm/default.nix
··· 1 1 { mkDerivation, lib, fetchFromGitHub 2 - , cmake, extra-cmake-modules, pkgconfig, libxcb, libpthreadstubs 2 + , cmake, extra-cmake-modules, pkg-config, libxcb, libpthreadstubs 3 3 , libXdmcp, libXau, qtbase, qtdeclarative, qtquickcontrols2, qttools, pam, systemd 4 4 }: 5 5 ··· 27 27 sed -e '1i#include <sys/time.h>' -i src/helper/HelperApp.cpp 28 28 ''; 29 29 30 - nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qttools ]; 30 + nativeBuildInputs = [ cmake extra-cmake-modules pkg-config qttools ]; 31 31 32 32 buildInputs = [ 33 33 libxcb libpthreadstubs libXdmcp libXau pam qtbase qtdeclarative qtquickcontrols2 systemd
+2 -2
pkgs/applications/misc/abook/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, pkgconfig, ncurses, readline, autoreconfHook }: 1 + { lib, stdenv, fetchurl, fetchpatch, pkg-config, ncurses, readline, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "abook-0.6.1"; ··· 16 16 }) 17 17 ]; 18 18 19 - nativeBuildInputs = [ pkgconfig autoreconfHook ]; 19 + nativeBuildInputs = [ pkg-config autoreconfHook ]; 20 20 buildInputs = [ ncurses readline ]; 21 21 22 22 meta = {
+2 -2
pkgs/applications/misc/appeditor/default.nix
··· 4 4 , vala 5 5 , meson 6 6 , ninja 7 - , pkgconfig 7 + , pkg-config 8 8 , pantheon 9 9 , python3 10 10 , gettext ··· 29 29 meson 30 30 ninja 31 31 vala 32 - pkgconfig 32 + pkg-config 33 33 python3 34 34 wrapGAppsHook 35 35 ];
+2 -2
pkgs/applications/misc/artha/default.nix
··· 1 - { lib, stdenv, autoreconfHook, fetchurl, dbus-glib, gtk2, pkgconfig, wordnet }: 1 + { lib, stdenv, autoreconfHook, fetchurl, dbus-glib, gtk2, pkg-config, wordnet }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "artha"; ··· 9 9 sha256 = "0qr4ihl7ma3cq82xi1fpzvf74mm9vsg0j035xvmcp3r6rmw2fycx"; 10 10 }; 11 11 12 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 12 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 13 13 buildInputs = [ dbus-glib gtk2 wordnet ]; 14 14 15 15 patches = [
+2 -2
pkgs/applications/misc/audio/sox/default.nix
··· 1 - { config, lib, stdenv, fetchurl, pkgconfig, CoreAudio 1 + { config, lib, stdenv, fetchurl, pkg-config, CoreAudio 2 2 , enableAlsa ? true, alsaLib ? null 3 3 , enableLibao ? true, libao ? null 4 4 , enableLame ? config.sox.enableLame or false, lame ? null ··· 25 25 }; 26 26 27 27 # configure.ac uses pkg-config only to locate libopusfile 28 - nativeBuildInputs = optional enableOpusfile pkgconfig; 28 + nativeBuildInputs = optional enableOpusfile pkg-config; 29 29 30 30 buildInputs = 31 31 optional (enableAlsa && stdenv.isLinux) alsaLib ++
+2 -2
pkgs/applications/misc/ausweisapp2/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, pcsclite, qtsvg, qttools, qtwebsockets 1 + { lib, stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, pcsclite, qtsvg, qttools, qtwebsockets 2 2 , qtquickcontrols2, qtgraphicaleffects }: 3 3 4 4 mkDerivation rec { ··· 12 12 sha256 = "00isb8xcbm419nvxx2ri0n8x5d403733h2whjqjcd3hmpx3x4q1h"; 13 13 }; 14 14 15 - nativeBuildInputs = [ cmake pkgconfig ]; 15 + nativeBuildInputs = [ cmake pkg-config ]; 16 16 17 17 buildInputs = [ qtsvg qttools qtwebsockets qtquickcontrols2 qtgraphicaleffects pcsclite ]; 18 18
+2 -2
pkgs/applications/misc/bemenu/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, cairo, libxkbcommon 2 - , pango, fribidi, harfbuzz, pcre, pkgconfig 2 + , pango, fribidi, harfbuzz, pcre, pkg-config 3 3 , ncursesSupport ? true, ncurses ? null 4 4 , waylandSupport ? true, wayland ? null, wayland-protocols ? null 5 5 , x11Support ? true, xlibs ? null, xorg ? null ··· 20 20 sha256 = "1ifq5bk7782b9m6bl111x33fn38rpppdrww7hfavqia9a9gi2sl5"; 21 21 }; 22 22 23 - nativeBuildInputs = [ pkgconfig pcre ]; 23 + nativeBuildInputs = [ pkg-config pcre ]; 24 24 25 25 makeFlags = ["PREFIX=$(out)"]; 26 26
+2 -2
pkgs/applications/misc/bibletime/default.nix
··· 1 - { lib, mkDerivation, stdenv, fetchurl, cmake, pkgconfig, sword, boost, clucene_core 1 + { lib, mkDerivation, stdenv, fetchurl, cmake, pkg-config, sword, boost, clucene_core 2 2 , qtbase, qttools, qtsvg, qtwebkit 3 3 }: 4 4 ··· 13 13 sha256 = "1s5bvmwbz1gyp3ml8sghpc00h8nhdvx2iyq96iri30kwx1y1jy6i"; 14 14 }; 15 15 16 - nativeBuildInputs = [ cmake pkgconfig ]; 16 + nativeBuildInputs = [ cmake pkg-config ]; 17 17 buildInputs = [ 18 18 sword boost clucene_core 19 19 qtbase qttools qtsvg qtwebkit
+2 -2
pkgs/applications/misc/birdtray/default.nix
··· 3 3 , fetchFromGitHub 4 4 5 5 , cmake 6 - , pkgconfig 6 + , pkg-config 7 7 , qtbase 8 8 , qttools 9 9 , qtx11extras ··· 26 26 ./fix-qttranslations-path.diff 27 27 ]; 28 28 29 - nativeBuildInputs = [ cmake pkgconfig ]; 29 + nativeBuildInputs = [ cmake pkg-config ]; 30 30 buildInputs = [ 31 31 qtbase qttools qtx11extras 32 32 ];
+2 -2
pkgs/applications/misc/blogc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ronn, git, cmocka }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ronn, git, cmocka }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "blogc"; ··· 11 11 sha256 = "0hx0gpvmv7rd910czafvmcpxabbvfmvdyxk4d1mckmblx8prb807"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 16 16 buildInputs = [ ronn git cmocka ]; 17 17
+2 -2
pkgs/applications/misc/calibre/default.nix
··· 2 2 , mkDerivation 3 3 , fetchurl 4 4 , poppler_utils 5 - , pkgconfig 5 + , pkg-config 6 6 , libpng 7 7 , imagemagick 8 8 , libjpeg ··· 55 55 56 56 enableParallelBuilding = true; 57 57 58 - nativeBuildInputs = [ pkgconfig qmake removeReferencesTo ]; 58 + nativeBuildInputs = [ pkg-config qmake removeReferencesTo ]; 59 59 60 60 CALIBRE_PY3_PORT = builtins.toString pythonPackages.isPy3k; 61 61
+2 -2
pkgs/applications/misc/cardpeek/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, 1 + { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, 2 2 glib, gtk3, pcsclite, lua5_2, curl, readline }: 3 3 let 4 4 version = "0.8.4"; ··· 14 14 sha256 = "1ighpl7nvcvwnsd6r5h5n9p95kclwrq99hq7bry7s53yr57l6588"; 15 15 }; 16 16 17 - nativeBuildInputs = [ pkgconfig autoreconfHook ]; 17 + nativeBuildInputs = [ pkg-config autoreconfHook ]; 18 18 buildInputs = [ glib gtk3 pcsclite lua5_2 curl readline ]; 19 19 20 20 enableParallelBuilding = true;
+2 -2
pkgs/applications/misc/cataract/build.nix
··· 2 2 , fetchgit 3 3 , autoreconfHook 4 4 , glib 5 - , pkgconfig 5 + , pkg-config 6 6 , libxml2 7 7 , exiv2 8 8 , imagemagick ··· 19 19 inherit sha256 rev; 20 20 }; 21 21 22 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 22 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 23 23 buildInputs = [ glib libxml2 exiv2 imagemagick ]; 24 24 25 25 prePatch = ''
+2 -2
pkgs/applications/misc/cbatticon/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, gettext, glib, gtk3, libnotify, wrapGAppsHook }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, gettext, glib, gtk3, libnotify, wrapGAppsHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cbatticon"; ··· 11 11 sha256 = "0ivm2dzhsa9ir25ry418r2qg2llby9j7a6m3arbvq5c3kaj8m9jr"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig gettext wrapGAppsHook ]; 14 + nativeBuildInputs = [ pkg-config gettext wrapGAppsHook ]; 15 15 16 16 buildInputs = [ glib gtk3 libnotify ]; 17 17
+2 -2
pkgs/applications/misc/chewing-editor/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, libchewing, qtbase 1 + { lib, stdenv, mkDerivation, fetchFromGitHub, cmake, pkg-config, libchewing, qtbase 2 2 , qttools }: 3 3 4 4 mkDerivation rec { ··· 14 14 15 15 doCheck = true; 16 16 17 - nativeBuildInputs = [ cmake pkgconfig ]; 17 + nativeBuildInputs = [ cmake pkg-config ]; 18 18 buildInputs = [ libchewing qtbase qttools ]; 19 19 20 20 meta = with lib; {
+2 -2
pkgs/applications/misc/cipher/default.nix
··· 4 4 , meson 5 5 , ninja 6 6 , vala 7 - , pkgconfig 7 + , pkg-config 8 8 , pantheon 9 9 , python3 10 10 , gettext ··· 29 29 meson 30 30 ninja 31 31 vala 32 - pkgconfig 32 + pkg-config 33 33 python3 34 34 wrapGAppsHook 35 35 ];
+2 -2
pkgs/applications/misc/clight/clightd.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , dbus, cmake, pkgconfig 2 + , dbus, cmake, pkg-config 3 3 , glib, udev, polkit, libmodule 4 4 , pcre, libXdmcp, util-linux, libpthreadstubs 5 5 , enableDdc ? true, ddcutil ··· 41 41 nativeBuildInputs = [ 42 42 dbus 43 43 cmake 44 - pkgconfig 44 + pkg-config 45 45 ]; 46 46 47 47 buildInputs = with lib; [
+2 -2
pkgs/applications/misc/clight/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , dbus, cmake, pkgconfig, bash-completion 2 + , dbus, cmake, pkg-config, bash-completion 3 3 , gsl, popt, clightd, systemd, libconfig, libmodule 4 4 , withGeoclue ? true, geoclue2 5 5 , withUpower ? true, upower }: ··· 30 30 nativeBuildInputs = [ 31 31 dbus 32 32 cmake 33 - pkgconfig 33 + pkg-config 34 34 bash-completion 35 35 ]; 36 36
+2 -2
pkgs/applications/misc/clipcat/default.nix
··· 1 1 { lib, fetchFromGitHub, installShellFiles, rustPlatform, rustfmt, xorg 2 - , pkgconfig, llvmPackages, clang, protobuf, python3 }: 2 + , pkg-config, llvmPackages, clang, protobuf, python3 }: 3 3 4 4 rustPlatform.buildRustPackage rec { 5 5 pname = "clipcat"; ··· 21 21 PROTOC_INCLUDE = "${protobuf}/include"; 22 22 23 23 nativeBuildInputs = [ 24 - pkgconfig 24 + pkg-config 25 25 26 26 clang 27 27 llvmPackages.libclang
+2 -2
pkgs/applications/misc/clipit/default.nix
··· 1 1 { fetchFromGitHub, fetchpatch, lib, stdenv 2 - , autoreconfHook, intltool, pkgconfig 2 + , autoreconfHook, intltool, pkg-config 3 3 , gtk3, libayatana-appindicator, xdotool, which, wrapGAppsHook }: 4 4 5 5 stdenv.mkDerivation rec { ··· 17 17 intltoolize --copy --force --automake 18 18 ''; 19 19 20 - nativeBuildInputs = [ pkgconfig wrapGAppsHook autoreconfHook intltool ]; 20 + nativeBuildInputs = [ pkg-config wrapGAppsHook autoreconfHook intltool ]; 21 21 configureFlags = [ "--with-gtk3" "--enable-appindicator=yes" ]; 22 22 buildInputs = [ gtk3 libayatana-appindicator ]; 23 23
+2 -2
pkgs/applications/misc/cpu-x/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, gtk3, ncurses 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, gtk3, ncurses 2 2 , libcpuid, pciutils, procps, wrapGAppsHook, nasm, makeWrapper }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "191zkkswlbbsw492yygc3idf7wh3bxs97drrqvqqw0mqvrzykxm3"; 13 13 }; 14 14 15 - nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook nasm makeWrapper ]; 15 + nativeBuildInputs = [ cmake pkg-config wrapGAppsHook nasm makeWrapper ]; 16 16 buildInputs = [ 17 17 gtk3 ncurses libcpuid pciutils procps 18 18 ];
+2 -2
pkgs/applications/misc/devilspie2/default.nix
··· 1 - { lib, stdenv, fetchurl, intltool, pkgconfig, glib, gtk, lua, libwnck3 }: 1 + { lib, stdenv, fetchurl, intltool, pkg-config, glib, gtk, lua, libwnck3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "devilspie2"; ··· 9 9 sha256 = "0a7qjl2qd4099kkkbwa1y2fk48s21jlr409lf9mij7mlc9yc3zzc"; 10 10 }; 11 11 12 - nativeBuildInputs = [ intltool pkgconfig ]; 12 + nativeBuildInputs = [ intltool pkg-config ]; 13 13 buildInputs = [ glib gtk lua libwnck3 ]; 14 14 15 15 installPhase = ''
+2 -2
pkgs/applications/misc/diff-pdf/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, cairo, poppler, wxGTK ? null, wxmac ? null, darwin ? null }: 1 + { lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, cairo, poppler, wxGTK ? null, wxmac ? null, darwin ? null }: 2 2 3 3 let 4 4 wxInputs = ··· 18 18 sha256 = "1y5ji4c4m69vzs0z051fkhfdrjnyxb6kzac5flhdkfb2hgp1jnxl"; 19 19 }; 20 20 21 - nativeBuildInputs = [ autoconf automake pkgconfig ]; 21 + nativeBuildInputs = [ autoconf automake pkg-config ]; 22 22 buildInputs = [ cairo poppler ] ++ wxInputs; 23 23 24 24 preConfigure = "./bootstrap";
+2 -2
pkgs/applications/misc/digitalbitbox/default.nix
··· 10 10 , udev 11 11 , libusb1 12 12 , makeWrapper 13 - , pkgconfig 13 + , pkg-config 14 14 , qtbase 15 15 , qttools 16 16 , qtwebsockets ··· 63 63 curl 64 64 git 65 65 makeWrapper 66 - pkgconfig 66 + pkg-config 67 67 qttools 68 68 ]; 69 69
+2 -2
pkgs/applications/misc/doomseeker/default.nix
··· 1 - { lib, stdenv, mkDerivation, cmake, fetchFromBitbucket, pkgconfig, qtbase, qttools, qtmultimedia, zlib, bzip2, xxd }: 1 + { lib, stdenv, mkDerivation, cmake, fetchFromBitbucket, pkg-config, qtbase, qttools, qtmultimedia, zlib, bzip2, xxd }: 2 2 3 3 mkDerivation { 4 4 pname = "doomseeker"; ··· 13 13 14 14 patches = [ ./fix_paths.patch ./qt_build_fix.patch ]; 15 15 16 - nativeBuildInputs = [ cmake qttools pkgconfig xxd ]; 16 + nativeBuildInputs = [ cmake qttools pkg-config xxd ]; 17 17 buildInputs = [ qtbase qtmultimedia zlib bzip2 ]; 18 18 19 19 hardeningDisable = lib.optional stdenv.isDarwin "format";
+2 -2
pkgs/applications/misc/dunst/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, makeWrapper 2 - , pkgconfig, which, perl, libXrandr 2 + , pkg-config, which, perl, libXrandr 3 3 , cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver 4 4 , libXinerama, libnotify, pango, xorgproto, librsvg, dunstify ? false 5 5 }: ··· 15 15 sha256 = "0irwkqcgwkqaylcpvqgh25gn2ysbdm2kydipxfzcq1ddj9ns6f9c"; 16 16 }; 17 17 18 - nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ]; 18 + nativeBuildInputs = [ perl pkg-config which systemd makeWrapper ]; 19 19 20 20 buildInputs = [ 21 21 cairo dbus gdk-pixbuf glib libX11 libXScrnSaver
+2 -2
pkgs/applications/misc/eaglemode/default.nix
··· 1 - { lib, stdenv, fetchurl, perl, libX11, libXinerama, libjpeg, libpng, libtiff, pkgconfig, 1 + { lib, stdenv, fetchurl, perl, libX11, libXinerama, libjpeg, libpng, libtiff, pkg-config, 2 2 librsvg, glib, gtk2, libXext, libXxf86vm, poppler, xineLib, ghostscript, makeWrapper }: 3 3 4 4 stdenv.mkDerivation rec { ··· 10 10 sha256 = "10zxih7gmyhq0az1mnsw2x563l4bbwcns794s4png8rf4d6hjszm"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkgconfig ]; 13 + nativeBuildInputs = [ pkg-config ]; 14 14 buildInputs = [ perl libX11 libXinerama libjpeg libpng libtiff 15 15 librsvg glib gtk2 libXxf86vm libXext poppler xineLib ghostscript makeWrapper ]; 16 16
+2 -2
pkgs/applications/misc/elogind/default.nix
··· 8 8 , getent 9 9 , libcap 10 10 , gettext 11 - , pkgconfig 11 + , pkg-config 12 12 , udev 13 13 , eudev 14 14 , libxslt ··· 42 42 meson 43 43 ninja 44 44 m4 45 - pkgconfig 45 + pkg-config 46 46 gperf 47 47 getent 48 48 libcap
+2 -2
pkgs/applications/misc/epdfview/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, pkgconfig, gtk2, poppler }: 1 + { lib, stdenv, fetchurl, fetchpatch, pkg-config, gtk2, poppler }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "epdfview"; ··· 9 9 sha256 = "0ibyb60a0b4n34bsjgvhdw8yf24463ky0hpmf6a2jjqsbm5g4v64"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ gtk2 poppler ]; 14 14 15 15 hardeningDisable = [ "format" ];
+2 -2
pkgs/applications/misc/et/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, libnotify, gdk-pixbuf }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, libnotify, gdk-pixbuf }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "et"; ··· 12 12 }; 13 13 14 14 buildInputs = [ libnotify gdk-pixbuf ]; 15 - nativeBuildInputs = [ pkgconfig ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 16 17 17 installPhase = '' 18 18 mkdir -p $out/bin
+2 -2
pkgs/applications/misc/evtest/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, pkgconfig, libxml2 }: 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config, libxml2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "evtest"; 5 5 version = "1.34"; 6 6 7 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 7 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 8 8 buildInputs = [ libxml2 ]; 9 9 10 10 src = fetchgit {
+2 -2
pkgs/applications/misc/far2l/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, makeWrapper, cmake, pkgconfig, wxGTK30, glib, pcre, m4, bash, 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, makeWrapper, cmake, pkg-config, wxGTK30, glib, pcre, m4, bash, 2 2 xdg_utils, gvfs, zip, unzip, gzip, bzip2, gnutar, p7zip, xz, imagemagick, darwin }: 3 3 4 4 let ··· 20 20 sha256 = "1ssd3hwz4b7vl4r858d9whl61cn23pgcamcjmvfa6ysf4x2b7sgi"; 21 21 }; 22 22 23 - nativeBuildInputs = [ cmake pkgconfig m4 makeWrapper imagemagick ]; 23 + nativeBuildInputs = [ cmake pkg-config m4 makeWrapper imagemagick ]; 24 24 25 25 buildInputs = [ wxGTK30 glib pcre ] 26 26 ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa;
+2 -2
pkgs/applications/misc/fbreader/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config 2 2 , bzip2, curl, expat, fribidi, libunibreak, sqlite, zlib 3 3 , uiTarget ? if !stdenv.isDarwin then "desktop" else "macosx" 4 4 , uiType ? if !stdenv.isDarwin then "qt4" else "cocoa" ··· 50 50 --replace -llinebreak -lunibreak 51 51 ''; 52 52 53 - nativeBuildInputs = [ pkgconfig ]; 53 + nativeBuildInputs = [ pkg-config ]; 54 54 55 55 buildInputs = [ 56 56 bzip2 curl expat fribidi libunibreak sqlite zlib
+2 -2
pkgs/applications/misc/fehlstart/default.nix
··· 1 - { lib, stdenv, pkgconfig, gtk2, keybinder, fetchFromGitLab }: 1 + { lib, stdenv, pkg-config, gtk2, keybinder, fetchFromGitLab }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "fehlstart-9f4342d7"; ··· 11 11 }; 12 12 13 13 patches = [ ./use-nix-profiles.patch ]; 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ gtk2 keybinder ]; 16 16 17 17 preConfigure = ''
+2 -2
pkgs/applications/misc/fme/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, autoconf, automake, gettext 1 + { lib, stdenv, fetchurl, pkg-config, autoconf, automake, gettext 2 2 , fluxbox, bc, gtkmm2, glibmm, libglademm, libsigcxx }: 3 3 4 4 stdenv.mkDerivation rec { ··· 11 11 sha256 = "d1c81a6a38c0faad02943ad65d6d0314bd205c6de841669a2efe43e4c503e63d"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ autoconf automake gettext fluxbox bc gtkmm2 glibmm libglademm libsigcxx ]; 16 16 17 17 preConfigure = ''
+2 -2
pkgs/applications/misc/font-manager/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, meson, ninja, gettext, python3, 2 - pkgconfig, libxml2, json-glib , sqlite, itstool, librsvg, yelp-tools, 2 + pkg-config, libxml2, json-glib , sqlite, itstool, librsvg, yelp-tools, 3 3 vala, gtk3, gnome3, desktop-file-utils, wrapGAppsHook, gobject-introspection 4 4 }: 5 5 ··· 15 15 }; 16 16 17 17 nativeBuildInputs = [ 18 - pkgconfig 18 + pkg-config 19 19 meson 20 20 ninja 21 21 gettext
+2 -2
pkgs/applications/misc/formatter/default.nix
··· 4 4 , meson 5 5 , ninja 6 6 , vala 7 - , pkgconfig 7 + , pkg-config 8 8 , pantheon 9 9 , python3 10 10 , substituteAll ··· 45 45 meson 46 46 ninja 47 47 vala 48 - pkgconfig 48 + pkg-config 49 49 python3 50 50 wrapGAppsHook 51 51 ];
+3 -3
pkgs/applications/misc/fsv/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchFromGitHub, autoreconfHook 2 - , libtool, pkgconfig, gtk2, libGLU, file 2 + , libtool, pkg-config, gtk2, libGLU, file 3 3 }: 4 4 5 5 let ··· 10 10 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 11 11 sha256 = "1pl2vdj6l64j864ilhkq1bcggb3hrlxjwk5m029i7xfjfxc587lf"; 12 12 }; 13 - nativeBuildInputs = [ pkgconfig ]; 13 + nativeBuildInputs = [ pkg-config ]; 14 14 buildInputs = [ gtk2 libGLU ]; 15 15 hardeningDisable = [ "format" ]; 16 16 }; ··· 31 31 sed -i 's/AM_GNU_GETTEXT/AM_GNU_GETTEXT([external])/' configure.in 32 32 ''; 33 33 34 - nativeBuildInputs = [ autoreconfHook libtool pkgconfig ]; 34 + nativeBuildInputs = [ autoreconfHook libtool pkg-config ]; 35 35 buildInputs = [ file gtk2 libGLU gtkglarea ]; 36 36 37 37 meta = with lib; {
+2 -2
pkgs/applications/misc/gImageReader/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, libuuid 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, libuuid 2 2 , sane-backends, podofo, libjpeg, djvulibre, libxmlxx3, libzip, tesseract 3 3 , intltool, poppler, json-glib 4 4 , ninja ··· 28 28 nativeBuildInputs = [ 29 29 cmake ninja 30 30 intltool 31 - pkgconfig 31 + pkg-config 32 32 pythonEnv 33 33 34 34 # Gtk specific
+2 -2
pkgs/applications/misc/galculator/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , autoreconfHook, intltool 3 - , gtk, pkgconfig, flex }: 3 + , gtk, pkg-config, flex }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "galculator"; ··· 13 13 sha256 = "0q0hb62f266709ncyq96bpx4a40a1i6dc5869byvd7x285sx1c2w"; 14 14 }; 15 15 16 - nativeBuildInputs = [ autoreconfHook intltool pkgconfig ]; 16 + nativeBuildInputs = [ autoreconfHook intltool pkg-config ]; 17 17 buildInputs = [ gtk flex ]; 18 18 19 19 meta = with lib; {
+2 -2
pkgs/applications/misc/gammu/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, pkgconfig, cmake, bluez, libusb1, curl 1 + { lib, stdenv, fetchFromGitHub, python, pkg-config, cmake, bluez, libusb1, curl 2 2 , libiconv, gettext, sqlite 3 3 , dbiSupport ? false, libdbi ? null, libdbiDrivers ? null 4 4 , postgresSupport ? false, postgresql ? null ··· 19 19 20 20 patches = [ ./bashcomp-dir.patch ./systemd.patch ]; 21 21 22 - nativeBuildInputs = [ pkgconfig cmake ]; 22 + nativeBuildInputs = [ pkg-config cmake ]; 23 23 24 24 buildInputs = [ python bluez libusb1 curl gettext sqlite libiconv ] 25 25 ++ optionals dbiSupport [ libdbi libdbiDrivers ]
+2 -2
pkgs/applications/misc/garmin-plugin/default.nix
··· 1 - { lib, stdenv, fetchurl, garmintools, libgcrypt, libusb-compat-0_1, pkgconfig, tinyxml, zlib }: 1 + { lib, stdenv, fetchurl, garmintools, libgcrypt, libusb-compat-0_1, pkg-config, tinyxml, zlib }: 2 2 stdenv.mkDerivation { 3 3 name = "garmin-plugin-0.3.26"; 4 4 src = fetchurl { ··· 6 6 sha256 = "15gads1fj4sj970m5960dgnhys41ksi4cm53ldkf67wn8dc9i4k0"; 7 7 }; 8 8 sourceRoot = "GarminPlugin-0.3.26/src"; 9 - nativeBuildInputs = [ pkgconfig ]; 9 + nativeBuildInputs = [ pkg-config ]; 10 10 buildInputs = [ garmintools libusb-compat-0_1 libgcrypt tinyxml zlib ]; 11 11 configureFlags = [ 12 12 "--with-libgcrypt-prefix=${libgcrypt.dev}"
+2 -2
pkgs/applications/misc/girara/default.nix
··· 1 - { lib, stdenv, fetchurl, meson, ninja, pkgconfig, check, dbus, xvfb_run, glib, gtk, gettext, libiconv, json_c, libintl 1 + { lib, stdenv, fetchurl, meson, ninja, pkg-config, check, dbus, xvfb_run, glib, gtk, gettext, libiconv, json_c, libintl 2 2 }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "1n3i960b458172mc3pkq7m9dn5qxry6fms3c3k06v27cjp5whsyf"; 13 13 }; 14 14 15 - nativeBuildInputs = [ meson ninja pkgconfig gettext check dbus xvfb_run ]; 15 + nativeBuildInputs = [ meson ninja pkg-config gettext check dbus xvfb_run ]; 16 16 buildInputs = [ libintl libiconv json_c ]; 17 17 propagatedBuildInputs = [ glib gtk ]; 18 18
+2 -2
pkgs/applications/misc/gkrellm/default.nix
··· 1 - { lib, fetchurl, stdenv, gettext, pkgconfig, glib, gtk2, libX11, libSM, libICE, which 1 + { lib, fetchurl, stdenv, gettext, pkg-config, glib, gtk2, libX11, libSM, libICE, which 2 2 , IOKit ? null }: 3 3 4 4 with lib; ··· 11 11 sha256 = "01lccz4fga40isv09j8rjgr0qy10rff9vj042n6gi6gdv4z69q0y"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig which ]; 14 + nativeBuildInputs = [ pkg-config which ]; 15 15 buildInputs = [gettext glib gtk2 libX11 libSM libICE] 16 16 ++ optionals stdenv.isDarwin [ IOKit ]; 17 17
+2 -2
pkgs/applications/misc/gksu/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, gtk2, gnome2, gnome3, libgksu, 1 + { lib, stdenv, fetchurl, pkg-config, gtk2, gnome2, gnome3, libgksu, 2 2 intltool, libstartup_notification, gtk-doc, wrapGAppsHook 3 3 }: 4 4 ··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ 15 - pkgconfig intltool gtk-doc wrapGAppsHook 15 + pkg-config intltool gtk-doc wrapGAppsHook 16 16 ]; 17 17 18 18 buildInputs = [
+2 -2
pkgs/applications/misc/glom/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 - , pkgconfig 3 + , pkg-config 4 4 , autoconf 5 5 , automake 6 6 , libtool ··· 59 59 }; 60 60 61 61 nativeBuildInputs = [ 62 - pkgconfig 62 + pkg-config 63 63 autoconf 64 64 automake 65 65 libtool
+2 -2
pkgs/applications/misc/gmrun/default.nix
··· 1 - { lib, stdenv, fetchurl, glib, gtk2, pkgconfig, popt }: 1 + { lib, stdenv, fetchurl, glib, gtk2, pkg-config, popt }: 2 2 3 3 let 4 4 version = "0.9.2"; ··· 13 13 sha256 = "180z6hbax1qypy5cyy2z6nn7fzxla4ib47ck8mqwr714ag77na8p"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig ]; 16 + nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ glib gtk2 popt ]; 18 18 19 19 doCheck = true;
+2 -2
pkgs/applications/misc/gmtp/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, libmtp, libid3tag, flac, libvorbis, gtk3 1 + { lib, stdenv, fetchurl, pkg-config, libmtp, libid3tag, flac, libvorbis, gtk3 2 2 , gsettings-desktop-schemas, wrapGAppsHook 3 3 }: 4 4 ··· 13 13 sha256 = "04q6byyq002fhzkc2rkkahwh5b6272xakaj4m3vwm8la8jf0r0ss"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 16 + nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 17 17 buildInputs = [ libmtp libid3tag flac libvorbis gtk3 gsettings-desktop-schemas ]; 18 18 19 19 enableParallelBuilding = true;
+2 -2
pkgs/applications/misc/gnome-firmware-updater/default.nix
··· 11 11 , libxmlb 12 12 , meson 13 13 , ninja 14 - , pkgconfig 14 + , pkg-config 15 15 , systemd 16 16 , help2man 17 17 , wrapGAppsHook ··· 48 48 help2man 49 49 meson 50 50 ninja 51 - pkgconfig 51 + pkg-config 52 52 wrapGAppsHook 53 53 ]; 54 54
+2 -2
pkgs/applications/misc/gnome-multi-writer/default.nix
··· 11 11 , libgudev 12 12 , meson 13 13 , ninja 14 - , pkgconfig 14 + , pkg-config 15 15 , wrapGAppsHook 16 16 , polkit 17 17 , udisks ··· 32 32 gettext 33 33 meson 34 34 ninja 35 - pkgconfig 35 + pkg-config 36 36 wrapGAppsHook 37 37 ]; 38 38
+2 -2
pkgs/applications/misc/gnome-recipes/default.nix
··· 2 2 , fetchurl 3 3 , meson 4 4 , ninja 5 - , pkgconfig 5 + , pkg-config 6 6 , gnome3 7 7 , desktop-file-utils 8 8 , gettext ··· 33 33 nativeBuildInputs = [ 34 34 meson 35 35 ninja 36 - pkgconfig 36 + pkg-config 37 37 desktop-file-utils 38 38 gettext 39 39 itstool
+2 -2
pkgs/applications/misc/gnome-usage/default.nix
··· 2 2 , fetchurl 3 3 , meson 4 4 , ninja 5 - , pkgconfig 5 + , pkg-config 6 6 , vala 7 7 , gettext 8 8 , libxml2 ··· 32 32 libxml2 33 33 meson 34 34 ninja 35 - pkgconfig 35 + pkg-config 36 36 vala 37 37 wrapGAppsHook 38 38 ];
+2 -2
pkgs/applications/misc/goldendict/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchFromGitHub, pkgconfig 1 + { lib, stdenv, mkDerivation, fetchFromGitHub, pkg-config 2 2 , libXtst, libvorbis, hunspell, lzo, xz, bzip2, libiconv 3 3 , qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake 4 4 , withCC ? true, opencc ··· 30 30 --replace "hunspell-1.6.1" "hunspell-${lib.versions.majorMinor hunspell.version}" 31 31 ''; 32 32 33 - nativeBuildInputs = [ pkgconfig qmake ]; 33 + nativeBuildInputs = [ pkg-config qmake ]; 34 34 buildInputs = [ 35 35 qtbase qtsvg qtwebkit qttools 36 36 libvorbis hunspell xz lzo
+2 -2
pkgs/applications/misc/gosmore/default.nix
··· 1 - { lib, stdenv, fetchsvn, libxml2, gtk2, curl, pkgconfig } : 1 + { lib, stdenv, fetchsvn, libxml2, gtk2, curl, pkg-config } : 2 2 3 3 let 4 4 version = "31801"; ··· 17 17 18 18 buildInputs = [ libxml2 gtk2 curl ]; 19 19 20 - nativeBuildInputs = [ pkgconfig ]; 20 + nativeBuildInputs = [ pkg-config ]; 21 21 22 22 prePatch = '' 23 23 sed -e '/curl.types.h/d' -i *.{c,h,hpp,cpp}
+2 -2
pkgs/applications/misc/gpa/default.nix
··· 1 - { lib, stdenv, fetchurl, intltool, pkgconfig, gtk2, gpgme, libgpgerror, libassuan }: 1 + { lib, stdenv, fetchurl, intltool, pkg-config, gtk2, gpgme, libgpgerror, libassuan }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gpa-0.10.0"; ··· 8 8 sha256 = "1cbpc45f8qbdkd62p12s3q2rdq6fa5xdzwmcwd3xrj55bzkspnwm"; 9 9 }; 10 10 11 - nativeBuildInputs = [ intltool pkgconfig ]; 11 + nativeBuildInputs = [ intltool pkg-config ]; 12 12 buildInputs = [ gtk2 gpgme libgpgerror libassuan ]; 13 13 14 14 meta = with lib; {
+2 -2
pkgs/applications/misc/gphoto2/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config 2 2 , gettext 3 3 , libexif 4 4 , libgphoto2 ··· 21 21 22 22 nativeBuildInputs = [ 23 23 autoreconfHook 24 - pkgconfig 24 + pkg-config 25 25 gettext 26 26 libtool 27 27 ];
+2 -2
pkgs/applications/misc/gphoto2/gphotofs.nix
··· 1 - { lib, stdenv, fetchurl, libtool, pkgconfig, libgphoto2, fuse, glib }: 1 + { lib, stdenv, fetchurl, libtool, pkg-config, libgphoto2, fuse, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gphoto2fs"; ··· 8 8 sha256 = "1k23ncbsbh64r7kz050bg31jqamchyswgg9izhzij758d7gc8vk7"; 9 9 }; 10 10 11 - nativeBuildInputs = [ pkgconfig ]; 11 + nativeBuildInputs = [ pkg-config ]; 12 12 buildInputs = [ 13 13 libgphoto2 fuse glib libtool 14 14 ];
+2 -2
pkgs/applications/misc/gpscorrelate/default.nix
··· 1 - { fetchFromGitHub, lib, stdenv, fetchpatch, pkgconfig, exiv2, libxml2, gtk3 1 + { fetchFromGitHub, lib, stdenv, fetchpatch, pkg-config, exiv2, libxml2, gtk3 2 2 , libxslt, docbook_xsl, docbook_xml_dtd_42, desktop-file-utils, wrapGAppsHook }: 3 3 4 4 stdenv.mkDerivation rec { ··· 17 17 docbook_xml_dtd_42 18 18 docbook_xsl 19 19 libxslt 20 - pkgconfig 20 + pkg-config 21 21 wrapGAppsHook 22 22 ]; 23 23
+2 -2
pkgs/applications/misc/gpx-viewer/default.nix
··· 1 - { lib, stdenv, fetchurl, intltool, libxml2, pkgconfig, gnome3, libchamplain, gdl, shared-mime-info, desktop-file-utils, wrapGAppsHook }: 1 + { lib, stdenv, fetchurl, intltool, libxml2, pkg-config, gnome3, libchamplain, gdl, shared-mime-info, desktop-file-utils, wrapGAppsHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gpx-viewer"; ··· 18 18 configureFlags = [ "--disable-database-updates" ]; 19 19 20 20 nativeBuildInputs = [ 21 - intltool pkgconfig 21 + intltool pkg-config 22 22 wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system 23 23 ]; 24 24 buildInputs = [ gdl libchamplain gnome3.adwaita-icon-theme libxml2 ];
+2 -2
pkgs/applications/misc/green-pdfviewer/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, poppler, pkgconfig, gdk-pixbuf, SDL, gtk2 }: 1 + { lib, stdenv, fetchFromGitHub, poppler, pkg-config, gdk-pixbuf, SDL, gtk2 }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "green-pdfviewer"; ··· 11 11 sha256 = "0d0lv33flhgsxhc77kfp2avdz5gvml04r8l1j95yjz2rr096lzlj"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ poppler gdk-pixbuf SDL gtk2 ]; 16 16 17 17 patches = [
+2 -2
pkgs/applications/misc/grip/default.nix
··· 1 - { lib, stdenv, fetchurl, gtk2, glib, pkgconfig, libgnome, libgnomeui, vte 1 + { lib, stdenv, fetchurl, gtk2, glib, pkg-config, libgnome, libgnomeui, vte 2 2 , curl, cdparanoia, libid3tag, ncurses, libtool }: 3 3 4 4 stdenv.mkDerivation rec { ··· 9 9 sha256 = "1si5kidwg0i2jg0brzyvjrzw24v3km2hdgd4kda1adzq81a3p1cs"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ gtk2 glib libgnome libgnomeui vte curl cdparanoia 14 14 libid3tag ncurses libtool ]; 15 15
+2 -2
pkgs/applications/misc/gsimplecal/default.nix
··· 1 - { lib, stdenv, fetchurl, automake, autoconf, pkgconfig, gtk3 }: 1 + { lib, stdenv, fetchurl, automake, autoconf, pkg-config, gtk3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gsimplecal"; ··· 15 15 16 16 enableParallelBuilding = true; 17 17 18 - nativeBuildInputs = [ pkgconfig ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 19 buildInputs = [ automake autoconf gtk3 ]; 20 20 21 21 preConfigure = "./autogen.sh";
+2 -2
pkgs/applications/misc/gtk2fontsel/default.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig, gtk2 }: 1 + {lib, stdenv, fetchurl, pkg-config, gtk2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "0.1"; ··· 9 9 sha256 = "0s2sj19n8ys92q9832hkn36ld91bb4qavicc6nygkry6qdpkkmjw"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ stdenv gtk2 ]; 14 14 15 15 preferLocalBuild = true;
+2 -2
pkgs/applications/misc/gummi/default.nix
··· 1 1 { lib, stdenv, pkgs 2 2 , glib, gnome3, gtk3, gtksourceview3, gtkspell3, poppler, texlive 3 - , pkgconfig, intltool, autoreconfHook, wrapGAppsHook 3 + , pkg-config, intltool, autoreconfHook, wrapGAppsHook 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { ··· 15 15 }; 16 16 17 17 nativeBuildInputs = [ 18 - pkgconfig intltool autoreconfHook wrapGAppsHook 18 + pkg-config intltool autoreconfHook wrapGAppsHook 19 19 ]; 20 20 buildInputs = [ 21 21 glib gtksourceview3 gtk3 gtkspell3 poppler
+2 -2
pkgs/applications/misc/gv/default.nix
··· 1 - { lib, stdenv, fetchurl, Xaw3d, ghostscriptX, perl, pkgconfig, libiconv }: 1 + { lib, stdenv, fetchurl, Xaw3d, ghostscriptX, perl, pkg-config, libiconv }: 2 2 3 3 let 4 4 name = "gv-3.7.4"; ··· 19 19 Xaw3d 20 20 ghostscriptX 21 21 perl 22 - pkgconfig 22 + pkg-config 23 23 ] ++ lib.optionals stdenv.isDarwin [ 24 24 libiconv 25 25 ];
+2 -2
pkgs/applications/misc/gxmessage/default.nix
··· 1 - { lib, stdenv, fetchurl, gtk3, intltool, pkgconfig, texinfo }: 1 + { lib, stdenv, fetchurl, gtk3, intltool, pkg-config, texinfo }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gxmessage"; ··· 9 9 sha256 = "db4e1655fc58f31e5770a17dfca4e6c89028ad8b2c8e043febc87a0beedeef05"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ intltool gtk3 texinfo ]; 14 14 15 15 meta = {
+2 -2
pkgs/applications/misc/gxneur/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, intltool, gtk2, xorg, glib, xneur, libglade, GConf, libappindicator-gtk2, pcre }: 1 + { lib, stdenv, fetchurl, pkg-config, intltool, gtk2, xorg, glib, xneur, libglade, GConf, libappindicator-gtk2, pcre }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "gxneur-0.20.0"; ··· 11 11 # glib-2.62 deprecations 12 12 NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS"; 13 13 14 - nativeBuildInputs = [ pkgconfig intltool ]; 14 + nativeBuildInputs = [ pkg-config intltool ]; 15 15 buildInputs = [ 16 16 xorg.libX11 glib gtk2 xorg.libXpm xorg.libXt xorg.libXext xneur 17 17 libglade GConf pcre libappindicator-gtk2
+2 -2
pkgs/applications/misc/hstr/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, readline, ncurses 2 - , autoreconfHook, pkgconfig, gettext }: 2 + , autoreconfHook, pkg-config, gettext }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "hstr"; ··· 12 12 sha256 = "1chmfdi1dwg3sarzd01nqa82g65q7wdr6hrnj96l75vikwsg986y"; 13 13 }; 14 14 15 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 16 16 buildInputs = [ readline ncurses gettext ]; 17 17 18 18 configureFlags = [ "--prefix=$(out)" ];
+2 -2
pkgs/applications/misc/jgmenu/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 - , pkgconfig 3 + , pkg-config 4 4 , python3Packages 5 5 , pango 6 6 , librsvg ··· 25 25 }; 26 26 27 27 nativeBuildInputs = [ 28 - pkgconfig 28 + pkg-config 29 29 makeWrapper 30 30 python3Packages.wrapPython 31 31 ];
+2 -2
pkgs/applications/misc/k2pdfopt/default.nix
··· 1 1 { lib, stdenv, runCommand, fetchzip, fetchurl, fetchpatch, fetchFromGitHub 2 - , cmake, pkgconfig, zlib, libpng, makeWrapper 2 + , cmake, pkg-config, zlib, libpng, makeWrapper 3 3 , enableGSL ? true, gsl 4 4 , enableGhostScript ? true, ghostscript 5 5 , enableMuPDF ? true, mupdf_1_17 ··· 70 70 --replace "<djvu.h>" "<libdjvu/ddjvuapi.h>" 71 71 ''; 72 72 73 - nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; 73 + nativeBuildInputs = [ cmake pkg-config makeWrapper ]; 74 74 75 75 buildInputs = 76 76 let
+2 -2
pkgs/applications/misc/libosmocore/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config 2 2 , pcsclite, talloc, python2, gnutls 3 3 }: 4 4 ··· 18 18 ]; 19 19 20 20 nativeBuildInputs = [ 21 - autoreconfHook pkgconfig 21 + autoreconfHook pkg-config 22 22 ]; 23 23 24 24 buildInputs = [
+2 -2
pkgs/applications/misc/librecad/default.nix
··· 5 5 , installShellFiles 6 6 , mkDerivationWith 7 7 , muparser 8 - , pkgconfig 8 + , pkg-config 9 9 , qmake 10 10 , qtbase 11 11 , qtsvg ··· 83 83 84 84 nativeBuildInputs = [ 85 85 installShellFiles 86 - pkgconfig 86 + pkg-config 87 87 qmake 88 88 qttools 89 89 ];
+2 -2
pkgs/applications/misc/lighthouse/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, pkg-config 2 2 , libX11, libxcb, cairo, gtk2, pango, python27, python3 3 3 }: 4 4 ··· 13 13 sha256 = "0v6ylm49f1b44zwq1y1gqxp2csyqblplr24ajllc2q3r0sc9m1ys"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig ]; 16 + nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ 18 18 libX11 libxcb cairo gtk2 pango python27 python3 19 19 ];
+2 -2
pkgs/applications/misc/ltwheelconf/default.nix
··· 1 - { lib, stdenv, libusb1, pkgconfig, fetchFromGitHub }: 1 + { lib, stdenv, libusb1, pkg-config, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "ltwheelconf"; ··· 11 11 sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ libusb1 ]; 16 16 17 17 installPhase = ''
+2 -2
pkgs/applications/misc/lyx/default.nix
··· 1 - { fetchurl, lib, mkDerivation, pkgconfig, python, file, bc 1 + { fetchurl, lib, mkDerivation, pkg-config, python, file, bc 2 2 , qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost 3 3 }: 4 4 ··· 12 12 }; 13 13 14 14 # LaTeX is used from $PATH, as people often want to have it with extra pkgs 15 - nativeBuildInputs = [ pkgconfig ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 16 buildInputs = [ 17 17 qtbase qtsvg python file/*for libmagic*/ bc 18 18 hunspell makeWrapper # enchant
+2 -2
pkgs/applications/misc/mako/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, ninja, pkgconfig, scdoc 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, scdoc 2 2 , systemd, pango, cairo, gdk-pixbuf 3 3 , wayland, wayland-protocols 4 4 , wrapGAppsHook }: ··· 14 14 sha256 = "0hwvibpnrximb628w9dsfjpi30b5jy7nfkm4d94z5vhp78p43vxh"; 15 15 }; 16 16 17 - nativeBuildInputs = [ meson ninja pkgconfig scdoc wayland-protocols wrapGAppsHook ]; 17 + nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-protocols wrapGAppsHook ]; 18 18 buildInputs = [ systemd pango cairo gdk-pixbuf wayland ]; 19 19 20 20 mesonFlags = [ "-Dzsh-completions=true" ];
+2 -2
pkgs/applications/misc/mediainfo-gui/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, wxGTK30-gtk3 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, libzen, libmediainfo, wxGTK30-gtk3 2 2 , desktop-file-utils, libSM, imagemagick }: 3 3 4 4 stdenv.mkDerivation rec { ··· 9 9 sha256 = "0rqg9z7s5bk7vlvjrs4gackzg7ib05a0dffi2ihsjf5a7kw7wcir"; 10 10 }; 11 11 12 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 12 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 13 13 buildInputs = [ libzen libmediainfo wxGTK30-gtk3 desktop-file-utils libSM 14 14 imagemagick ]; 15 15
+2 -2
pkgs/applications/misc/mediainfo/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, zlib }: 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, libzen, libmediainfo, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "20.09"; ··· 8 8 sha256 = "0rqg9z7s5bk7vlvjrs4gackzg7ib05a0dffi2ihsjf5a7kw7wcir"; 9 9 }; 10 10 11 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 11 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 12 12 buildInputs = [ libzen libmediainfo zlib ]; 13 13 14 14 sourceRoot = "./MediaInfo/Project/GNU/CLI/";
+2 -2
pkgs/applications/misc/megacmd/default.nix
··· 15 15 , libuv 16 16 , libzen 17 17 , pcre-cpp 18 - , pkgconfig 18 + , pkg-config 19 19 , readline 20 20 , sqlite 21 21 }: ··· 36 36 autoconf 37 37 automake 38 38 libtool 39 - pkgconfig 39 + pkg-config 40 40 ]; 41 41 42 42 buildInputs = [
+2 -2
pkgs/applications/misc/megasync/default.nix
··· 16 16 , libzen 17 17 , lsb-release 18 18 , mkDerivation 19 - , pkgconfig 19 + , pkg-config 20 20 , qtbase 21 21 , qttools 22 22 , qtx11extras ··· 39 39 }; 40 40 41 41 nativeBuildInputs = 42 - [ autoconf automake doxygen lsb-release pkgconfig qttools swig ]; 42 + [ autoconf automake doxygen lsb-release pkg-config qttools swig ]; 43 43 buildInputs = [ 44 44 c-ares 45 45 cryptopp
+2 -2
pkgs/applications/misc/merkaartor/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, qmake, pkgconfig, fetchpatch 1 + { mkDerivation, lib, fetchFromGitHub, qmake, pkg-config, fetchpatch 2 2 , boost, gdal, proj, qtbase, qtsvg, qtwebview, qtwebkit }: 3 3 4 4 mkDerivation rec { ··· 19 19 }) 20 20 ]; 21 21 22 - nativeBuildInputs = [ qmake pkgconfig ]; 22 + nativeBuildInputs = [ qmake pkg-config ]; 23 23 24 24 buildInputs = [ boost gdal proj qtbase qtsvg qtwebview qtwebkit ]; 25 25
+2 -2
pkgs/applications/misc/milu/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, unzip, pkgconfig, glib, llvmPackages }: 1 + { lib, stdenv, fetchFromGitHub, unzip, pkg-config, glib, llvmPackages }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "milu-nightly"; ··· 22 22 cp bin/milu $out/bin 23 23 ''; 24 24 25 - nativeBuildInputs = [ pkgconfig ]; 25 + nativeBuildInputs = [ pkg-config ]; 26 26 buildInputs = [ 27 27 glib 28 28 unzip
+2 -2
pkgs/applications/misc/minder/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , pkgconfig, meson, ninja, python3 2 + , pkg-config, meson, ninja, python3 3 3 , wrapGAppsHook, vala, shared-mime-info 4 4 , cairo, pantheon, glib, gtk3, libxml2, libgee, libarchive 5 5 , discount, gtksourceview3 ··· 17 17 sha256 = "137kyf82n5a2v0cm9q02rhv8rmbjgnj60h64prq90h0d42prj3gd"; 18 18 }; 19 19 20 - nativeBuildInputs = [ pkgconfig meson ninja python3 wrapGAppsHook vala shared-mime-info ]; 20 + nativeBuildInputs = [ pkg-config meson ninja python3 wrapGAppsHook vala shared-mime-info ]; 21 21 buildInputs = [ cairo pantheon.granite glib gtk3 libxml2 libgee libarchive hicolor-icon-theme discount gtksourceview3 ]; 22 22 23 23 postPatch = ''
+2 -2
pkgs/applications/misc/moonlight-embedded/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, perl 2 2 , alsaLib, libevdev, libopus, udev, SDL2 3 - , ffmpeg_3, pkgconfig, xorg, libvdpau, libpulseaudio, libcec 3 + , ffmpeg_3, pkg-config, xorg, libvdpau, libpulseaudio, libcec 4 4 , curl, expat, avahi, enet, libuuid, libva 5 5 }: 6 6 ··· 21 21 nativeBuildInputs = [ cmake perl ]; 22 22 buildInputs = [ 23 23 alsaLib libevdev libopus udev SDL2 24 - ffmpeg_3 pkgconfig xorg.libxcb libvdpau libpulseaudio libcec 24 + ffmpeg_3 pkg-config xorg.libxcb libvdpau libpulseaudio libcec 25 25 xorg.libpthreadstubs curl expat avahi enet libuuid libva 26 26 ]; 27 27
+2 -2
pkgs/applications/misc/mupdf/1.17.nix
··· 1 - { stdenv, lib, fetchurl, fetchpatch, pkgconfig, freetype, harfbuzz, openjpeg 1 + { stdenv, lib, fetchurl, fetchpatch, pkg-config, freetype, harfbuzz, openjpeg 2 2 , jbig2dec, libjpeg , darwin 3 3 , enableX11 ? true, libX11, libXext, libXi, libXrandr 4 4 , enableCurl ? true, curl, openssl ··· 32 32 ''; 33 33 34 34 makeFlags = [ "prefix=$(out) USE_SYSTEM_LIBS=yes" ]; 35 - nativeBuildInputs = [ pkgconfig ]; 35 + nativeBuildInputs = [ pkg-config ]; 36 36 buildInputs = [ freetype harfbuzz openjpeg jbig2dec libjpeg freeglut libGLU ] 37 37 ++ lib.optionals enableX11 [ libX11 libXext libXi libXrandr ] 38 38 ++ lib.optionals enableCurl [ curl openssl ]
+2 -2
pkgs/applications/misc/mupdf/default.nix
··· 1 - { stdenv, lib, fetchurl, fetchpatch, pkgconfig, freetype, harfbuzz, openjpeg 1 + { stdenv, lib, fetchurl, fetchpatch, pkg-config, freetype, harfbuzz, openjpeg 2 2 , jbig2dec, libjpeg , darwin 3 3 , gumbo 4 4 , enableX11 ? true, libX11, libXext, libXi, libXrandr ··· 49 49 buildFlags = [ "shared" ]; 50 50 51 51 makeFlags = [ "prefix=$(out) USE_SYSTEM_LIBS=yes" ]; 52 - nativeBuildInputs = [ pkgconfig ]; 52 + nativeBuildInputs = [ pkg-config ]; 53 53 buildInputs = [ freetype harfbuzz openjpeg jbig2dec libjpeg freeglut libGLU gumbo ] 54 54 ++ lib.optionals enableX11 [ libX11 libXext libXi libXrandr ] 55 55 ++ lib.optionals enableCurl [ curl openssl ]
+2 -2
pkgs/applications/misc/mysql-workbench/default.nix
··· 3 3 , substituteAll 4 4 , cmake 5 5 , ninja 6 - , pkgconfig 6 + , pkg-config 7 7 , glibc 8 8 , gtk3 9 9 , gtkmm3 ··· 86 86 nativeBuildInputs = [ 87 87 cmake 88 88 ninja 89 - pkgconfig 89 + pkg-config 90 90 jre 91 91 swig 92 92 wrapGAppsHook
+2 -2
pkgs/applications/misc/navit/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, gtk2, fontconfig, freetype, imlib2 1 + { lib, stdenv, fetchFromGitHub, pkg-config, gtk2, fontconfig, freetype, imlib2 2 2 , SDL_image, libGLU, libGL, libXmu, freeglut, pcre, dbus, dbus-glib, glib 3 3 , librsvg, freeimage, libxslt, cairo, gdk-pixbuf, pango 4 4 , atk, patchelf, fetchurl, bzip2, python, gettext, quesoglc ··· 58 58 qtbase qtlocation qtdeclarative qtsvg 59 59 ]; 60 60 61 - nativeBuildInputs = [ makeWrapper pkgconfig cmake patchelf bzip2 ]; 61 + nativeBuildInputs = [ makeWrapper pkg-config cmake patchelf bzip2 ]; 62 62 63 63 # we dont want blank screen by defaut 64 64 postInstall = ''
+2 -2
pkgs/applications/misc/nnn/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, ncurses, readline, conf ? null }: 2 2 3 3 with lib; 4 4 ··· 16 16 configFile = optionalString (conf != null) (builtins.toFile "nnn.h" conf); 17 17 preBuild = optionalString (conf != null) "cp ${configFile} src/nnn.h"; 18 18 19 - nativeBuildInputs = [ pkgconfig ]; 19 + nativeBuildInputs = [ pkg-config ]; 20 20 buildInputs = [ readline ncurses ]; 21 21 22 22 makeFlags = [ "DESTDIR=${placeholder "out"}" "PREFIX=" ];
+2 -2
pkgs/applications/misc/notejot/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, nix-update-script, vala, pkgconfig, meson, ninja, python3, pantheon 1 + { lib, stdenv, fetchFromGitHub, nix-update-script, vala, pkg-config, meson, ninja, python3, pantheon 2 2 , gtk3, gtksourceview, json-glib, libgee, wrapGAppsHook }: 3 3 4 4 stdenv.mkDerivation rec { ··· 16 16 meson 17 17 ninja 18 18 vala 19 - pkgconfig 19 + pkg-config 20 20 python3 21 21 wrapGAppsHook 22 22 ];
+2 -2
pkgs/applications/misc/notify-osd-customizable/default.nix
··· 7 7 , libtool 8 8 , libwnck3 9 9 , makeWrapper 10 - , pkgconfig 10 + , pkg-config 11 11 , gsettings-desktop-schemas 12 12 }: 13 13 ··· 24 24 25 25 preConfigure = "./autogen.sh --libexecdir=$(out)/bin"; 26 26 27 - nativeBuildInputs = [ pkgconfig ]; 27 + nativeBuildInputs = [ pkg-config ]; 28 28 buildInputs = [ 29 29 glib libwnck3 libnotify dbus-glib makeWrapper 30 30 gsettings-desktop-schemas gnome3.gnome-common
+2 -2
pkgs/applications/misc/notify-osd/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, glib, libwnck3, libnotify, dbus-glib, makeWrapper, gsettings-desktop-schemas }: 1 + { lib, stdenv, fetchurl, pkg-config, glib, libwnck3, libnotify, dbus-glib, makeWrapper, gsettings-desktop-schemas }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "notify-osd"; ··· 9 9 sha256 = "0g5a7a680b05x27apz0y1ldl5csxpp152wqi42s107jymbp0s20j"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ 14 14 glib libwnck3 libnotify dbus-glib makeWrapper 15 15 gsettings-desktop-schemas
+2 -2
pkgs/applications/misc/nut/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, neon, libusb-compat-0_1, openssl, udev, avahi, freeipmi 1 + { lib, stdenv, fetchurl, pkg-config, neon, libusb-compat-0_1, openssl, udev, avahi, freeipmi 2 2 , libtool, makeWrapper, autoreconfHook, fetchpatch 3 3 }: 4 4 ··· 21 21 22 22 buildInputs = [ neon libusb-compat-0_1 openssl udev avahi freeipmi ]; 23 23 24 - nativeBuildInputs = [ autoreconfHook libtool pkgconfig makeWrapper ]; 24 + nativeBuildInputs = [ autoreconfHook libtool pkg-config makeWrapper ]; 25 25 26 26 configureFlags = 27 27 [ "--with-all"
+2 -2
pkgs/applications/misc/nwg-launchers/default.nix
··· 5 5 , meson 6 6 , ninja 7 7 , nlohmann_json 8 - , pkgconfig 8 + , pkg-config 9 9 , swaylock 10 10 , makeWrapper 11 11 }: ··· 24 24 nativeBuildInputs = [ 25 25 meson 26 26 ninja 27 - pkgconfig 27 + pkg-config 28 28 cmake 29 29 makeWrapper 30 30 ];
+2 -2
pkgs/applications/misc/ola/default.nix
··· 3 3 , autoreconfHook 4 4 , bison 5 5 , flex 6 - , pkgconfig 6 + , pkg-config 7 7 , libuuid 8 8 , cppunit 9 9 , protobuf ··· 25 25 sha256 = "17a3z3zhx00rjk58icd3zlqfw3753f3y8bwy2sza0frdim09lqr4"; 26 26 }; 27 27 28 - nativeBuildInputs = [ autoreconfHook bison flex pkgconfig perl ]; 28 + nativeBuildInputs = [ autoreconfHook bison flex pkg-config perl ]; 29 29 buildInputs = [ libuuid cppunit protobuf zlib avahi libmicrohttpd python3 ]; 30 30 propagatedBuildInputs = [ 31 31 python3.pkgs.protobuf
+2 -2
pkgs/applications/misc/olifant/default.nix
··· 5 5 , vala 6 6 , meson 7 7 , ninja 8 - , pkgconfig 8 + , pkg-config 9 9 , python3 10 10 , libgee 11 11 , gsettings-desktop-schemas ··· 32 32 nativeBuildInputs = [ 33 33 meson 34 34 ninja 35 - pkgconfig 35 + pkg-config 36 36 python3 37 37 vala 38 38 wrapGAppsHook
+2 -2
pkgs/applications/misc/onboard/default.nix
··· 20 20 , mousetweaks 21 21 , udev 22 22 , libxkbcommon 23 - , pkgconfig 23 + , pkg-config 24 24 , procps 25 25 , python3 26 26 , wrapGAppsHook ··· 59 59 nativeBuildInputs = [ 60 60 gobject-introspection 61 61 intltool 62 - pkgconfig 62 + pkg-config 63 63 wrapGAppsHook 64 64 ]; 65 65
+2 -2
pkgs/applications/misc/openbox-menu/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, glib, gtk2, menu-cache }: 1 + { lib, stdenv, fetchurl, pkg-config, glib, gtk2, menu-cache }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "openbox-menu"; ··· 9 9 sha256 = "1hi4b6mq97y6ajq4hhsikbkk23aha7ikaahm92djw48mgj2f1w8l"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ glib gtk2 menu-cache ]; 14 14 15 15 patches = [ ./with-svg.patch ];
+2 -2
pkgs/applications/misc/orca/default.nix
··· 1 1 { lib, stdenv 2 - , pkgconfig 2 + , pkg-config 3 3 , fetchurl 4 4 , buildPythonApplication 5 5 , autoreconfHook ··· 57 57 nativeBuildInputs = [ 58 58 autoreconfHook 59 59 wrapGAppsHook 60 - pkgconfig 60 + pkg-config 61 61 libxmlxx3 62 62 gettext 63 63 yelp-tools
+2 -2
pkgs/applications/misc/pbpst/default.nix
··· 1 1 { llvmPackages, lib, stdenv, fetchFromGitHub 2 - , python36Packages, which, pkgconfig, curl, git, gettext, jansson 2 + , python36Packages, which, pkg-config, curl, git, gettext, jansson 3 3 4 4 # Optional overrides 5 5 , maxFileSize ? 64 # in MB ··· 20 20 nativeBuildInputs = [ 21 21 python36Packages.sphinx 22 22 which 23 - pkgconfig 23 + pkg-config 24 24 curl 25 25 git 26 26 gettext
+2 -2
pkgs/applications/misc/pcmanfm/default.nix
··· 1 - { lib, stdenv, fetchurl, glib, intltool, libfm, libX11, pango, pkgconfig 1 + { lib, stdenv, fetchurl, glib, intltool, libfm, libX11, pango, pkg-config 2 2 , wrapGAppsHook, gnome3, withGtk3 ? true, gtk2, gtk3 }: 3 3 4 4 let ··· 14 14 }; 15 15 16 16 buildInputs = [ glib gtk libfm' libX11 pango gnome3.adwaita-icon-theme ]; 17 - nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ]; 17 + nativeBuildInputs = [ pkg-config wrapGAppsHook intltool ]; 18 18 19 19 configureFlags = optional withGtk3 "--with-gtk=3"; 20 20
+2 -2
pkgs/applications/misc/pcmanx-gtk2/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, gtk2, libXft, intltool, automake, autoconf, libtool, pkgconfig }: 1 + { lib, stdenv, fetchFromGitHub, gtk2, libXft, intltool, automake, autoconf, libtool, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pcmanx-gtk2"; ··· 11 11 sha256 = "0fbwd149wny67rfhczz4cbh713a1qnswjiz7b6c2bxfcwh51f9rc"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ gtk2 libXft intltool automake autoconf libtool ]; 16 16 17 17 preConfigure = ''
+2 -2
pkgs/applications/misc/pdfmod/default.nix
··· 1 - { stdenv, fetchurl, fetchpatch, pkgconfig, gnome-doc-utils, intltool, lib 1 + { stdenv, fetchurl, fetchpatch, pkg-config, gnome-doc-utils, intltool, lib 2 2 , mono, gtk-sharp-2_0, gnome-sharp, hyena 3 3 , which, makeWrapper, glib, gnome2, poppler, wrapGAppsHook 4 4 }: ··· 18 18 sha256 = "0fpz9ifr6476lqhd5rkb94dm68vlrwdq5w1aaxzgyjgdax9hxx81"; 19 19 }) ]; 20 20 21 - nativeBuildInputs = [ pkgconfig ]; 21 + nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ 23 23 gnome-doc-utils intltool mono gtk-sharp-2_0 gnome-sharp 24 24 hyena which makeWrapper wrapGAppsHook
+2 -2
pkgs/applications/misc/pdfpc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, vala, gtk3, libgee, fetchpatch 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, vala, gtk3, libgee, fetchpatch 2 2 , poppler, libpthreadstubs, gstreamer, gst-plugins-base, gst-plugins-good, gst-libav, librsvg, pcre, gobject-introspection, wrapGAppsHook 3 3 , webkitgtk, discount, json-glib }: 4 4 ··· 15 15 }; 16 16 17 17 nativeBuildInputs = [ 18 - cmake pkgconfig vala 18 + cmake pkg-config vala 19 19 # For setup hook 20 20 gobject-introspection 21 21 wrapGAppsHook
+2 -2
pkgs/applications/misc/plank/default.nix
··· 13 13 , libXi 14 14 , pango 15 15 , gettext 16 - , pkgconfig 16 + , pkg-config 17 17 , libxml2 18 18 , bamf 19 19 , gdk-pixbuf ··· 40 40 gettext 41 41 gnome3.gnome-common 42 42 libxml2 # xmllint 43 - pkgconfig 43 + pkg-config 44 44 vala 45 45 wrapGAppsHook 46 46 ];
+2 -2
pkgs/applications/misc/polybar/default.nix
··· 1 - { cairo, cmake, fetchFromGitHub, libXdmcp, libpthreadstubs, libxcb, pcre, pkgconfig 1 + { cairo, cmake, fetchFromGitHub, libXdmcp, libpthreadstubs, libxcb, pcre, pkg-config 2 2 , python3, lib, stdenv, xcbproto, xcbutil, xcbutilcursor, xcbutilimage 3 3 , xcbutilrenderutil, xcbutilwm, xcbutilxrm, makeWrapper 4 4 , removeReferencesTo ··· 75 75 '' else ""; 76 76 77 77 nativeBuildInputs = [ 78 - cmake pkgconfig removeReferencesTo 78 + cmake pkg-config removeReferencesTo 79 79 ]; 80 80 81 81 postFixup = ''
+2 -2
pkgs/applications/misc/prusa-slicer/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, cmake, pkgconfig 1 + { stdenv, lib, fetchFromGitHub, cmake, pkg-config 2 2 , boost, cereal, curl, eigen, expat, glew, libpng, tbb, wxGTK31 3 3 , gtest, nlopt, xorg, makeDesktopItem 4 4 , cgal_5, gmp, ilmbase, mpfr, qhull, openvdb, systemd ··· 9 9 10 10 nativeBuildInputs = [ 11 11 cmake 12 - pkgconfig 12 + pkg-config 13 13 ]; 14 14 15 15 buildInputs = [
+2 -2
pkgs/applications/misc/ptask/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, makeWrapper, gtk3, json_c, taskwarrior }: 1 + { lib, stdenv, fetchurl, pkg-config, makeWrapper, gtk3, json_c, taskwarrior }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "ptask-1.0.0"; ··· 10 10 11 11 buildInputs = [ gtk3 json_c ]; 12 12 13 - nativeBuildInputs = [ pkgconfig makeWrapper ]; 13 + nativeBuildInputs = [ pkg-config makeWrapper ]; 14 14 15 15 patches = [ ./tw-version.patch ./json_c_is_error.patch ]; 16 16
+2 -2
pkgs/applications/misc/pwsafe/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, zip, gettext, perl 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, zip, gettext, perl 2 2 , wxGTK30, libXext, libXi, libXt, libXtst, xercesc 3 3 , qrencode, libuuid, libyubikey, yubikey-personalization 4 4 , curl, openssl, file ··· 16 16 }; 17 17 18 18 nativeBuildInputs = [ 19 - cmake gettext perl pkgconfig zip 19 + cmake gettext perl pkg-config zip 20 20 ]; 21 21 buildInputs = [ 22 22 libXext libXi libXt libXtst wxGTK30
+2 -2
pkgs/applications/misc/qcad/default.nix
··· 3 3 , libGLU 4 4 , mkDerivationWith 5 5 , muparser 6 - , pkgconfig 6 + , pkg-config 7 7 , qtbase 8 8 , qmake 9 9 , qtscript ··· 85 85 ]; 86 86 87 87 nativeBuildInputs = [ 88 - pkgconfig 88 + pkg-config 89 89 qmake 90 90 qttools 91 91 ];
+2 -2
pkgs/applications/misc/qlcplus/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchFromGitHub, qmake, pkgconfig, udev 1 + { lib, stdenv, mkDerivation, fetchFromGitHub, qmake, pkg-config, udev 2 2 , qtmultimedia, qtscript, alsaLib, ola, libftdi1, libusb-compat-0_1 3 3 , libsndfile, libmad 4 4 }: ··· 14 14 sha256 = "PB1Y8N1TrJMcS7A2e1nKjsUlAxOYjdJqBhbyuDCAbGs="; 15 15 }; 16 16 17 - nativeBuildInputs = [ qmake pkgconfig ]; 17 + nativeBuildInputs = [ qmake pkg-config ]; 18 18 buildInputs = [ 19 19 udev qtmultimedia qtscript alsaLib ola libftdi1 libusb-compat-0_1 libsndfile libmad 20 20 ];
+2 -2
pkgs/applications/misc/qolibri/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, pkgconfig, cmake, libeb, lzo 1 + { mkDerivation, lib, fetchFromGitHub, pkg-config, cmake, libeb, lzo 2 2 , qtbase, qtmultimedia, qttools, qtwebengine }: 3 3 4 4 mkDerivation { ··· 12 12 sha256 = "0kcc6dvbcmq9y7hk8mp23pydiaqz6f0clg64d1f2y04ppphmah42"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkgconfig cmake ]; 15 + nativeBuildInputs = [ pkg-config cmake ]; 16 16 buildInputs = [ 17 17 libeb lzo qtbase qtmultimedia qttools qtwebengine 18 18 ];
+2 -2
pkgs/applications/misc/qpdfview/default.nix
··· 1 - {lib, stdenv, mkDerivation, fetchurl, qmake, qtbase, qtsvg, pkgconfig, poppler, djvulibre, libspectre, cups 1 + {lib, stdenv, mkDerivation, fetchurl, qmake, qtbase, qtsvg, pkg-config, poppler, djvulibre, libspectre, cups 2 2 , file, ghostscript 3 3 }: 4 4 let ··· 10 10 url="https://launchpad.net/qpdfview/trunk/${version}/+download/qpdfview-${version}.tar.gz"; 11 11 sha256 = "0v1rl126hvblajnph2hkansgi0s8vjdc5yxrm4y3faa0lxzjwr6c"; 12 12 }; 13 - nativeBuildInputs = [ qmake pkgconfig ]; 13 + nativeBuildInputs = [ qmake pkg-config ]; 14 14 buildInputs = [ 15 15 qtbase qtsvg poppler djvulibre libspectre cups file ghostscript 16 16 ];
+2 -2
pkgs/applications/misc/quicksynergy/default.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig, gtk2, synergy}: 1 + {lib, stdenv, fetchurl, pkg-config, gtk2, synergy}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "quicksynergy"; ··· 8 8 sha256 = "1pi8503bg8q1psw50y6d780i33nnvfjqiy9vnr3v52pdcfip8pix"; 9 9 }; 10 10 11 - nativeBuildInputs = [ pkgconfig ]; 11 + nativeBuildInputs = [ pkg-config ]; 12 12 buildInputs = [ 13 13 gtk2 14 14 synergy
+2 -2
pkgs/applications/misc/razergenie/default.nix
··· 1 - { stdenv, fetchFromGitHub, lib, meson, ninja, pkgconfig, qtbase, qttools 1 + { stdenv, fetchFromGitHub, lib, meson, ninja, pkg-config, qtbase, qttools 2 2 , wrapQtAppsHook 3 3 , enableExperimental ? false 4 4 , includeMatrixDiscovery ? false ··· 19 19 }; 20 20 21 21 nativeBuildInputs = [ 22 - pkgconfig meson ninja wrapQtAppsHook 22 + pkg-config meson ninja wrapQtAppsHook 23 23 ]; 24 24 25 25 buildInputs = [
+2 -2
pkgs/applications/misc/redis-desktop-manager/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, fetchFromGitiles, pkgconfig, libssh2 1 + { stdenv, lib, fetchFromGitHub, fetchFromGitiles, pkg-config, libssh2 2 2 , qtbase, qtdeclarative, qtgraphicaleffects, qtimageformats, qtquickcontrols 3 3 , qtsvg, qttools, qtquick1, qtcharts 4 4 , qmake ··· 25 25 sha256 = "0yd4i944d4blw8jky0nxl7sfkkj975q4d328rdcbhizwvf6dx81f"; 26 26 }; 27 27 28 - nativeBuildInputs = [ pkgconfig qmake ]; 28 + nativeBuildInputs = [ pkg-config qmake ]; 29 29 buildInputs = [ 30 30 libssh2 qtbase qtdeclarative qtgraphicaleffects qtimageformats 31 31 qtquick1 qtquickcontrols qtsvg qttools qtcharts
+2 -2
pkgs/applications/misc/redshift/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchFromGitLab 2 2 , autoconf, automake, gettext, intltool 3 - , libtool, pkgconfig, wrapGAppsHook, wrapPython, gobject-introspection 3 + , libtool, pkg-config, wrapGAppsHook, wrapPython, gobject-introspection 4 4 , gtk3, python, pygobject3, pyxdg 5 5 6 6 , withQuartz ? stdenv.isDarwin, ApplicationServices ··· 30 30 gettext 31 31 intltool 32 32 libtool 33 - pkgconfig 33 + pkg-config 34 34 wrapGAppsHook 35 35 wrapPython 36 36 ];
+2 -2
pkgs/applications/misc/regextester/default.nix
··· 3 3 , vala 4 4 , gettext 5 5 , libxml2 6 - , pkgconfig 6 + , pkg-config 7 7 , glib 8 8 , gtk3 9 9 , gnome3 ··· 32 32 libxml2 33 33 meson 34 34 ninja 35 - pkgconfig 35 + pkg-config 36 36 wrapGAppsHook 37 37 ]; 38 38
+2 -2
pkgs/applications/misc/rofi-emoji/default.nix
··· 6 6 , makeWrapper 7 7 8 8 , autoreconfHook 9 - , pkgconfig 9 + , pkg-config 10 10 11 11 , cairo 12 12 , glib ··· 45 45 46 46 nativeBuildInputs = [ 47 47 autoreconfHook 48 - pkgconfig 48 + pkg-config 49 49 ]; 50 50 51 51 buildInputs = [
+2 -2
pkgs/applications/misc/rofi-file-browser/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, rofi, gtk3 }: 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, rofi, gtk3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rofi-file-browser-extended"; ··· 18 18 --replace "/usr/share/" "$out/share/" 19 19 ''; 20 20 21 - nativeBuildInputs = [ cmake pkgconfig ]; 21 + nativeBuildInputs = [ cmake pkg-config ]; 22 22 buildInputs = [ rofi gtk3 ]; 23 23 24 24 ROFI_PLUGINS_DIR = "$out/lib/rofi";
+2 -2
pkgs/applications/misc/rofi/default.nix
··· 1 1 { stdenv, lib, fetchurl 2 - , autoreconfHook, pkgconfig, libxkbcommon, pango, which, git 2 + , autoreconfHook, pkg-config, libxkbcommon, pango, which, git 3 3 , cairo, libxcb, xcbutil, xcbutilwm, xcbutilxrm, libstartup_notification 4 4 , bison, flex, librsvg, check 5 5 }: ··· 19 19 sed -i 's/~root/~nobody/g' test/helper-expand.c 20 20 ''; 21 21 22 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 22 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 23 23 buildInputs = [ libxkbcommon pango cairo git bison flex librsvg check 24 24 libstartup_notification libxcb xcbutil xcbutilwm xcbutilxrm which 25 25 ];
+2 -2
pkgs/applications/misc/sc-im/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, yacc, ncurses, libxml2, libzip, libxls, pkgconfig }: 1 + { lib, stdenv, fetchFromGitHub, yacc, ncurses, libxml2, libzip, libxls, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "0.7.0"; ··· 11 11 sha256 = "0xi0n9qzby012y2j7hg4fgcwyly698sfi4i9gkvy0q682jihprbk"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ yacc ncurses libxml2 libzip libxls ]; 16 16 17 17 buildPhase = ''
+2 -2
pkgs/applications/misc/sdcv/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, glib, gettext, readline }: 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, glib, gettext, readline }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sdcv"; ··· 12 12 }; 13 13 14 14 hardeningDisable = [ "format" ]; 15 - nativeBuildInputs = [ cmake pkgconfig ]; 15 + nativeBuildInputs = [ cmake pkg-config ]; 16 16 buildInputs = [ glib gettext readline ]; 17 17 18 18 preInstall = ''
+2 -2
pkgs/applications/misc/sequeler/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, nix-update-script 2 - , vala, meson, ninja, pkgconfig, pantheon, gettext, wrapGAppsHook, python3, desktop-file-utils 2 + , vala, meson, ninja, pkg-config, pantheon, gettext, wrapGAppsHook, python3, desktop-file-utils 3 3 , gtk3, glib, libgee, libgda, gtksourceview, libxml2, libsecret, libssh2 }: 4 4 5 5 ··· 20 20 sha256 = "090plqnby2wxzr1waq5kz89w3269j363mgxwfz9g7qg55lddaahz"; 21 21 }; 22 22 23 - nativeBuildInputs = [ meson ninja pkgconfig vala gettext wrapGAppsHook python3 desktop-file-utils ]; 23 + nativeBuildInputs = [ meson ninja pkg-config vala gettext wrapGAppsHook python3 desktop-file-utils ]; 24 24 25 25 buildInputs = [ gtk3 glib pantheon.granite libgee sqlGda gtksourceview libxml2 libsecret libssh2 ]; 26 26
+2 -2
pkgs/applications/misc/slade/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, wxGTK, gtk2, sfml, fluidsynth, curl, freeimage, ftgl, glew, zip }: 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, wxGTK, gtk2, sfml, fluidsynth, curl, freeimage, ftgl, glew, zip }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "slade"; ··· 11 11 sha256 = "0mdn59jm6ab4cdh99bgvadif3wdlqmk5mq635gg7krq35njgw6f6"; 12 12 }; 13 13 14 - nativeBuildInputs = [ cmake pkgconfig zip ]; 14 + nativeBuildInputs = [ cmake pkg-config zip ]; 15 15 buildInputs = [ wxGTK gtk2 sfml fluidsynth curl freeimage ftgl glew ]; 16 16 17 17 meta = with lib; {
+2 -2
pkgs/applications/misc/slade/git.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, wxGTK, gtk2, sfml, fluidsynth, curl, freeimage, ftgl, glew, zip }: 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, wxGTK, gtk2, sfml, fluidsynth, curl, freeimage, ftgl, glew, zip }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "slade-git-3.1.2.2018.01.29"; ··· 11 11 }; 12 12 13 13 cmakeFlags = ["-DNO_WEBVIEW=1"]; 14 - nativeBuildInputs = [ cmake pkgconfig zip ]; 14 + nativeBuildInputs = [ cmake pkg-config zip ]; 15 15 buildInputs = [ wxGTK gtk2 sfml fluidsynth curl freeimage ftgl glew ]; 16 16 17 17 meta = with lib; {
+2 -2
pkgs/applications/misc/slstatus/default.nix
··· 1 - { lib, stdenv, fetchgit, pkgconfig, writeText, libX11, conf ? null, patches ? [] }: 1 + { lib, stdenv, fetchgit, pkg-config, writeText, libX11, conf ? null, patches ? [] }: 2 2 3 3 with lib; 4 4 ··· 17 17 18 18 inherit patches; 19 19 20 - nativeBuildInputs = [ pkgconfig ]; 20 + nativeBuildInputs = [ pkg-config ]; 21 21 buildInputs = [ libX11 ]; 22 22 23 23 installFlags = [ "PREFIX=$(out)" ];
+2 -2
pkgs/applications/misc/spacefm/default.nix
··· 1 1 { pkgs, fetchFromGitHub, lib, stdenv, gtk3, udev, desktop-file-utils 2 - , shared-mime-info, intltool, pkgconfig, wrapGAppsHook, ffmpegthumbnailer 2 + , shared-mime-info, intltool, pkg-config, wrapGAppsHook, ffmpegthumbnailer 3 3 , jmtpfs, ifuseSupport ? false, ifuse ? null, lsof, udisks2 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 32 32 gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share") 33 33 ''; 34 34 35 - nativeBuildInputs = [ pkgconfig ]; 35 + nativeBuildInputs = [ pkg-config ]; 36 36 buildInputs = [ 37 37 gtk3 udev desktop-file-utils shared-mime-info intltool 38 38 wrapGAppsHook ffmpegthumbnailer jmtpfs lsof udisks2
+2 -2
pkgs/applications/misc/subsurface/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchFromGitHub, autoreconfHook, cmake, wrapQtAppsHook, pkgconfig, qmake 1 + { lib, stdenv, fetchurl, fetchFromGitHub, autoreconfHook, cmake, wrapQtAppsHook, pkg-config, qmake 2 2 , curl, grantlee, libgit2, libusb-compat-0_1, libssh2, libxml2, libxslt, libzip, zlib 3 3 , qtbase, qtconnectivity, qtlocation, qtsvg, qttools, qtwebkit, libXcomposite 4 4 }: ··· 84 84 qtbase qtconnectivity qtsvg qttools qtwebkit 85 85 ]; 86 86 87 - nativeBuildInputs = [ cmake wrapQtAppsHook pkgconfig ]; 87 + nativeBuildInputs = [ cmake wrapQtAppsHook pkg-config ]; 88 88 89 89 cmakeFlags = [ 90 90 "-DLIBDC_FROM_PKGCONFIG=ON"
+2 -2
pkgs/applications/misc/swappy/default.nix
··· 5 5 , cairo 6 6 , pango 7 7 , gtk 8 - , pkgconfig 8 + , pkg-config 9 9 , cmake 10 10 , scdoc 11 11 , libnotify ··· 24 24 sha256 = "14ac2jmnak7avcz0jhqjm30vk7pv3gq5aq5rdyh84k8c613kkicf"; 25 25 }; 26 26 27 - nativeBuildInputs = [ glib meson ninja pkgconfig cmake scdoc ]; 27 + nativeBuildInputs = [ glib meson ninja pkg-config cmake scdoc ]; 28 28 29 29 buildInputs = [ cairo pango gtk libnotify wayland glib ]; 30 30
+2 -2
pkgs/applications/misc/synapse/default.nix
··· 1 - { lib, stdenv, fetchurl, gettext, pkgconfig, glib, libnotify, gtk3, libgee 1 + { lib, stdenv, fetchurl, gettext, pkg-config, glib, libnotify, gtk3, libgee 2 2 , keybinder3, json-glib, zeitgeist, vala, gobject-introspection 3 3 }: 4 4 ··· 14 14 }; 15 15 16 16 nativeBuildInputs = [ 17 - pkgconfig gettext vala 17 + pkg-config gettext vala 18 18 # For setup hook 19 19 gobject-introspection 20 20 ];
+2 -2
pkgs/applications/misc/syncthing-tray/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, buildGoPackage, pkgconfig, libappindicator-gtk3 }: 1 + { lib, stdenv, fetchFromGitHub, buildGoPackage, pkg-config, libappindicator-gtk3 }: 2 2 3 3 buildGoPackage rec { 4 4 pname = "syncthing-tray"; ··· 15 15 16 16 goDeps = ./deps.nix; 17 17 18 - nativeBuildInputs = [ pkgconfig ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 19 buildInputs = [ libappindicator-gtk3 ]; 20 20 21 21 meta = with lib; {
+2 -2
pkgs/applications/misc/taizen/default.nix
··· 1 - { rustPlatform, lib, fetchFromGitHub, ncurses, openssl, pkgconfig, Security, stdenv }: 1 + { rustPlatform, lib, fetchFromGitHub, ncurses, openssl, pkg-config, Security, stdenv }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "taizen"; ··· 12 12 }; 13 13 14 14 buildInputs = [ ncurses openssl ] ++ lib.optional stdenv.isDarwin Security; 15 - nativeBuildInputs = [ pkgconfig ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 16 17 17 cargoSha256 = "0chrgwm97y1a3gj218x25yqk1y1h74a6gzyxjdm023msvs58nkni"; 18 18
+3 -3
pkgs/applications/misc/toggldesktop/default.nix
··· 1 - { mkDerivation, lib, fetchzip, buildEnv, makeDesktopItem, runCommand, writeText, pkgconfig 1 + { mkDerivation, lib, fetchzip, buildEnv, makeDesktopItem, runCommand, writeText, pkg-config 2 2 , cmake, qmake, cacert, jsoncpp, libX11, libXScrnSaver, lua, openssl, poco 3 3 , qtbase, qtwebengine, qtx11extras, sqlite }: 4 4 ··· 68 68 69 69 sourceRoot = "source/src"; 70 70 71 - nativeBuildInputs = [ qmake pkgconfig ]; 71 + nativeBuildInputs = [ qmake pkg-config ]; 72 72 buildInputs = [ jsoncpp lua openssl poco poco-pc-wrapped sqlite libX11 ]; 73 73 74 74 postPatch = '' ··· 93 93 ln -s ${cacert}/etc/ssl/certs/ca-bundle.crt $out/cacert.pem 94 94 ''; 95 95 96 - nativeBuildInputs = [ qmake pkgconfig ]; 96 + nativeBuildInputs = [ qmake pkg-config ]; 97 97 98 98 buildInputs = [ 99 99 bugsnag-qt
+2 -2
pkgs/applications/misc/tomboy/default.nix
··· 1 - { stdenv, fetchurl, itstool, intltool, pkgconfig 1 + { stdenv, fetchurl, itstool, intltool, pkg-config 2 2 , libxml2, gnome2, atk, gtk2, glib 3 3 , mono, mono-addins, dbus-sharp-2_0, dbus-sharp-glib-2_0, gnome-sharp, gtk-sharp-2_0 4 4 , makeWrapper, lib}: ··· 16 16 sha256 = "0j5jmd079bm2fydqaic5ymbfdxna3qlx6fkp2mqhgcdr7prsbl3q"; 17 17 }; 18 18 19 - nativeBuildInputs = [ pkgconfig ]; 19 + nativeBuildInputs = [ pkg-config ]; 20 20 buildInputs = [ itstool intltool 21 21 libxml2 gnome2.GConf atk gtk2 22 22 mono mono-addins dbus-sharp-2_0 dbus-sharp-glib-2_0 gnome-sharp gtk-sharp-2_0
+2 -2
pkgs/applications/misc/tootle/default.nix
··· 5 5 , vala 6 6 , meson 7 7 , ninja 8 - , pkgconfig 8 + , pkg-config 9 9 , python3 10 10 , libgee 11 11 , gsettings-desktop-schemas ··· 32 32 nativeBuildInputs = [ 33 33 meson 34 34 ninja 35 - pkgconfig 35 + pkg-config 36 36 python3 37 37 vala 38 38 wrapGAppsHook
+2 -2
pkgs/applications/misc/twmn/default.nix
··· 1 - { lib, mkDerivation, fetchFromGitHub, qtbase, qtx11extras, qmake, pkgconfig, boost }: 1 + { lib, mkDerivation, fetchFromGitHub, qtbase, qtx11extras, qmake, pkg-config, boost }: 2 2 3 3 mkDerivation { 4 4 name = "twmn-git-2018-10-01"; ··· 10 10 sha256 = "0mpjvp800x07lp9i3hfcc5f4bqj1fj4w3dyr0zwaxc6wqmm0fdqz"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkgconfig qmake ]; 13 + nativeBuildInputs = [ pkg-config qmake ]; 14 14 buildInputs = [ qtbase qtx11extras boost ]; 15 15 16 16 postPatch = ''
+2 -2
pkgs/applications/misc/udevil/default.nix
··· 1 - { lib, stdenv, fetchurl, intltool, glib, pkgconfig, udev, util-linux, acl }: 1 + { lib, stdenv, fetchurl, intltool, glib, pkg-config, udev, util-linux, acl }: 2 2 stdenv.mkDerivation { 3 3 name = "udevil-0.4.4"; 4 4 src = fetchurl { 5 5 url = "https://github.com/IgnorantGuru/udevil/archive/0.4.4.tar.gz"; 6 6 sha256 = "0z1bhaayambrcn7bgnrqk445k50ifabmw8q4i9qj49nnbcvxhbxd"; 7 7 }; 8 - nativeBuildInputs = [ pkgconfig ]; 8 + nativeBuildInputs = [ pkg-config ]; 9 9 buildInputs = [ intltool glib udev ]; 10 10 configurePhase = '' 11 11 substituteInPlace src/Makefile.in --replace "-o root -g root" ""
+2 -2
pkgs/applications/misc/veracrypt/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, pkgconfig, makeself, yasm, fuse, wxGTK, lvm2 }: 1 + { lib, stdenv, fetchurl, fetchpatch, pkg-config, makeself, yasm, fuse, wxGTK, lvm2 }: 2 2 3 3 with lib; 4 4 ··· 29 29 30 30 sourceRoot = "src"; 31 31 32 - nativeBuildInputs = [ makeself pkgconfig yasm ]; 32 + nativeBuildInputs = [ makeself pkg-config yasm ]; 33 33 buildInputs = [ fuse lvm2 wxGTK ]; 34 34 35 35 enableParallelBuilding = true;
+2 -2
pkgs/applications/misc/verbiste/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, libgnomeui, libxml2 }: 1 + { lib, stdenv, fetchurl, pkg-config, libgnomeui, libxml2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "verbiste"; ··· 10 10 sha256 = "02kzin3pky2q2jnihrch8y0hy043kqqmzxq8j741x80kl0j1qxkm"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkgconfig ]; 13 + nativeBuildInputs = [ pkg-config ]; 14 14 15 15 buildInputs = [ libgnomeui libxml2 ]; 16 16
+2 -2
pkgs/applications/misc/vifm/default.nix
··· 1 1 { stdenv, fetchurl, makeWrapper 2 - , pkgconfig 2 + , pkg-config 3 3 , ncurses, libX11 4 4 , util-linux, file, which, groff 5 5 ··· 17 17 sha256 = "0rqyd424y0g5b5basw2ybb60r9gar4f40d1xgzr3c2dsy4jpwvyh"; 18 18 }; 19 19 20 - nativeBuildInputs = [ pkgconfig makeWrapper ]; 20 + nativeBuildInputs = [ pkg-config makeWrapper ]; 21 21 buildInputs = [ ncurses libX11 util-linux file which groff ]; 22 22 23 23 postFixup = let
+2 -2
pkgs/applications/misc/viking/default.nix
··· 1 1 { fetchurl, fetchpatch, lib, stdenv, makeWrapper 2 - , pkgconfig, intltool, gettext, gtk2, expat, curl 2 + , pkg-config, intltool, gettext, gtk2, expat, curl 3 3 , gpsd, bc, file, gnome-doc-utils, libexif, libxml2, libxslt, scrollkeeper 4 4 , docbook_xml_dtd_412, gexiv2, gpsbabel, expect 5 5 , withMapnik ? false, mapnik ··· 25 25 }) 26 26 ]; 27 27 28 - nativeBuildInputs = [ pkgconfig ]; 28 + nativeBuildInputs = [ pkg-config ]; 29 29 buildInputs = [ makeWrapper intltool gettext gtk2 expat curl gpsd bc file gnome-doc-utils 30 30 libexif libxml2 libxslt scrollkeeper docbook_xml_dtd_412 gexiv2 31 31 ] ++ lib.optional withMapnik mapnik
+2 -2
pkgs/applications/misc/volnoti/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchpatch 2 - , pkgconfig, dbus, gdk-pixbuf, glib, libX11, gtk2, librsvg 2 + , pkg-config, dbus, gdk-pixbuf, glib, libX11, gtk2, librsvg 3 3 , dbus-glib, autoreconfHook, wrapGAppsHook }: 4 4 5 5 stdenv.mkDerivation { ··· 22 22 }) 23 23 ]; 24 24 25 - nativeBuildInputs = [ pkgconfig autoreconfHook wrapGAppsHook ]; 25 + nativeBuildInputs = [ pkg-config autoreconfHook wrapGAppsHook ]; 26 26 27 27 buildInputs = [ 28 28 dbus gdk-pixbuf glib libX11 gtk2 dbus-glib librsvg
+2 -2
pkgs/applications/misc/vym/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchurl, pkgconfig, qmake, qtscript, qtsvg }: 1 + { lib, stdenv, mkDerivation, fetchurl, pkg-config, qmake, qtscript, qtsvg }: 2 2 3 3 mkDerivation rec { 4 4 pname = "vym"; ··· 32 32 33 33 hardeningDisable = [ "format" ]; 34 34 35 - nativeBuildInputs = [ pkgconfig qmake ]; 35 + nativeBuildInputs = [ pkg-config qmake ]; 36 36 buildInputs = [ qtscript qtsvg ]; 37 37 38 38 postInstall = ''
+2 -2
pkgs/applications/misc/waybar/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, pkgconfig, ninja, wrapGAppsHook 1 + { lib, stdenv, fetchFromGitHub, meson, pkg-config, ninja, wrapGAppsHook 2 2 , wayland, wlroots, gtkmm3, libsigcxx, jsoncpp, fmt, scdoc, spdlog, gtk-layer-shell 3 3 , howard-hinnant-date, cmake 4 4 , traySupport ? true, libdbusmenu-gtk3 ··· 21 21 }; 22 22 23 23 nativeBuildInputs = [ 24 - meson ninja pkgconfig scdoc wrapGAppsHook cmake 24 + meson ninja pkg-config scdoc wrapGAppsHook cmake 25 25 ] ++ lib.optional withMediaPlayer gobject-introspection; 26 26 27 27 propagatedBuildInputs = lib.optionals withMediaPlayer [
+2 -2
pkgs/applications/misc/web-media-controller/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, glib, pcre, json-glib }: 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, glib, pcre, json-glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wmc-mpris"; ··· 11 11 sha256 = "1zcnaf9g55cbj9d2zlsr0i15qh0w9gp5jmxkm6dcp1j6yd7j3ymc"; 12 12 }; 13 13 14 - nativeBuildInputs = [ cmake pkgconfig ]; 14 + nativeBuildInputs = [ cmake pkg-config ]; 15 15 buildInputs = [ glib pcre json-glib ]; 16 16 cmakeFlags = [ 17 17 "-DCHROMIUM_MANIFEST_DESTINATION=${placeholder "out"}/etc/chromium/native-messaging-hosts"
+2 -2
pkgs/applications/misc/workrave/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, wrapGAppsHook 2 - , autoconf, autoconf-archive, automake, gettext, intltool, libtool, pkgconfig 2 + , autoconf, autoconf-archive, automake, gettext, intltool, libtool, pkg-config 3 3 , libICE, libSM, libXScrnSaver, libXtst, cheetah 4 4 , gobject-introspection, glib, glibmm, gtkmm3, atk, pango, pangomm, cairo 5 5 , cairomm , dbus, dbus-glib, gdome2, gstreamer, gst-plugins-base ··· 18 18 }; 19 19 20 20 nativeBuildInputs = [ 21 - autoconf autoconf-archive automake gettext intltool libtool pkgconfig wrapGAppsHook 21 + autoconf autoconf-archive automake gettext intltool libtool pkg-config wrapGAppsHook 22 22 ]; 23 23 buildInputs = [ 24 24 libICE libSM libXScrnSaver libXtst cheetah
+2 -2
pkgs/applications/misc/xca/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, autoreconfHook, perl, pkgconfig 1 + { mkDerivation, lib, fetchFromGitHub, autoreconfHook, perl, pkg-config 2 2 , libtool, openssl, qtbase, qttools }: 3 3 4 4 mkDerivation rec { ··· 19 19 20 20 buildInputs = [ libtool openssl qtbase ]; 21 21 22 - nativeBuildInputs = [ autoreconfHook pkgconfig qttools ]; 22 + nativeBuildInputs = [ autoreconfHook pkg-config qttools ]; 23 23 24 24 enableParallelBuilding = true; 25 25
+2 -2
pkgs/applications/misc/xfe/default.nix
··· 1 - { lib, stdenv, fetchurl, fox, pkgconfig, gettext, xlibsWrapper, gcc, intltool, file, libpng }: 1 + { lib, stdenv, fetchurl, fox, pkg-config, gettext, xlibsWrapper, gcc, intltool, file, libpng }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "xfe-1.42"; ··· 8 8 sha256 = "1v1v0vcbnm30kpyd3rj8f56yh7lfnwy7nbs9785wi229b29fiqx1"; 9 9 }; 10 10 11 - nativeBuildInputs = [ pkgconfig ]; 11 + nativeBuildInputs = [ pkg-config ]; 12 12 buildInputs = [ fox gettext xlibsWrapper gcc intltool file libpng ]; 13 13 14 14 preConfigure = ''
+2 -2
pkgs/applications/misc/xfontsel/default.nix
··· 2 2 # at https://www.x.org/releases/individual/. 3 3 # That is why this expression is not inside pkgs.xorg 4 4 5 - {lib, stdenv, fetchurl, makeWrapper, libX11, pkgconfig, libXaw}: 5 + {lib, stdenv, fetchurl, makeWrapper, libX11, pkg-config, libXaw}: 6 6 stdenv.mkDerivation rec { 7 7 name = "xfontsel-1.0.6"; 8 8 ··· 11 11 sha256 = "0700lf6hx7dg88wq1yll7zjvf9gbwh06xff20yffkxb289y0pai5"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [libX11 makeWrapper libXaw]; 16 16 17 17 # Without this, it gets Xmu as a dependency, but without rpath entry
+2 -2
pkgs/applications/misc/xiphos/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, pkg-config 2 2 , python 3 3 , intltool 4 4 , docbook2x, docbook_xml_dtd_412, libxslt ··· 23 23 sha256 = "14il9k4i58qbc78hcadw3gqy21sb9q661d75vlj6fwpczbzj7x1a"; 24 24 }; 25 25 26 - nativeBuildInputs = [ pkgconfig wrapGAppsHook wafHook ]; 26 + nativeBuildInputs = [ pkg-config wrapGAppsHook wafHook ]; 27 27 buildInputs = [ python intltool docbook2x docbook_xml_dtd_412 libxslt 28 28 sword clucene_core biblesync gnome-doc-utils libgsf gconf gtkhtml 29 29 libglade scrollkeeper webkitgtk dbus-glib enchant isocodes libuuid icu ];
+2 -2
pkgs/applications/misc/xneur/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, intltool, xorg, pcre, gst_all_1, glib 1 + { lib, stdenv, fetchurl, pkg-config, intltool, xorg, pcre, gst_all_1, glib 2 2 , xosd, libnotify, enchant, wrapGAppsHook, gdk-pixbuf }: 3 3 4 4 stdenv.mkDerivation { ··· 11 11 }; 12 12 13 13 nativeBuildInputs = [ 14 - pkgconfig intltool wrapGAppsHook 14 + pkg-config intltool wrapGAppsHook 15 15 ]; 16 16 17 17 buildInputs = [
+2 -2
pkgs/applications/misc/xpad/default.nix
··· 1 1 { lib, stdenv, fetchurl 2 - , autoreconfHook, pkgconfig, wrapGAppsHook 2 + , autoreconfHook, pkg-config, wrapGAppsHook 3 3 , glib, intltool, gtk3, gtksourceview }: 4 4 5 5 stdenv.mkDerivation rec { ··· 11 11 sha256 = "1qpmlwn0bcw1q73ag0l0fdnlzmwawfvsy4g9y5b0vyrc58lcp5d3"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ]; 15 15 16 16 buildInputs = [ glib intltool gtk3 gtksourceview ]; 17 17
+2 -2
pkgs/applications/misc/xscope/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, libXt }: 1 + { lib, stdenv, fetchurl, pkg-config, libXt }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xscope"; ··· 9 9 sha256 = "08zl3zghvbcqy0r5dn54dim84lp52s0ygrr87jr3a942a6ypz01k"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ libXt ]; 14 14 15 15 meta = with lib; {
+2 -2
pkgs/applications/misc/xsuspender/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, makeWrapper, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, cmake, makeWrapper, pkg-config 2 2 , glib, libwnck3, procps }: 3 3 4 4 with lib; ··· 16 16 17 17 outputs = [ "out" "man" "doc" ]; 18 18 19 - nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; 19 + nativeBuildInputs = [ cmake pkg-config makeWrapper ]; 20 20 buildInputs = [ glib libwnck3 ]; 21 21 22 22 postInstall = ''
+2 -2
pkgs/applications/misc/xsw/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, pkgconfig, SDL, SDL_image, SDL_ttf, SDL_gfx, flex, bison }: 1 + { stdenv, lib, fetchFromGitHub, pkg-config, SDL, SDL_image, SDL_ttf, SDL_gfx, flex, bison }: 2 2 3 3 let 4 4 makeSDLFlags = map (p: "-I${lib.getDev p}/include/SDL"); ··· 14 14 sha256 = "092vp61ngd2vscsvyisi7dv6qrk5m1i81gg19hyfl5qvjq5p0p8g"; 15 15 }; 16 16 17 - nativeBuildInputs = [ pkgconfig flex bison ]; 17 + nativeBuildInputs = [ pkg-config flex bison ]; 18 18 19 19 buildInputs = [ SDL SDL_image SDL_ttf SDL_gfx ]; 20 20
+3 -3
pkgs/applications/misc/xxkb/default.nix
··· 1 1 { lib, stdenv, fetchurl, libX11, libXt, libXext, libXpm, imake, gccmakedep 2 - , svgSupport ? false, librsvg, glib, gdk-pixbuf, pkgconfig 2 + , svgSupport ? false, librsvg, glib, gdk-pixbuf, pkg-config 3 3 }: 4 4 5 5 assert svgSupport -> 6 - librsvg != null && glib != null && gdk-pixbuf != null && pkgconfig != null; 6 + librsvg != null && glib != null && gdk-pixbuf != null && pkg-config != null; 7 7 8 8 stdenv.mkDerivation rec { 9 9 name = "xxkb-1.11.1"; ··· 16 16 nativeBuildInputs = [ imake gccmakedep ]; 17 17 buildInputs = [ 18 18 libX11 libXt libXext libXpm 19 - ] ++ lib.optionals svgSupport [ librsvg glib gdk-pixbuf pkgconfig ]; 19 + ] ++ lib.optionals svgSupport [ librsvg glib gdk-pixbuf pkg-config ]; 20 20 21 21 outputs = [ "out" "man" ]; 22 22
+2 -2
pkgs/applications/misc/yate/default.nix
··· 1 - { stdenv, fetchurl, lib, qt4, openssl, pkgconfig }: 1 + { stdenv, fetchurl, lib, qt4, openssl, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "yate"; ··· 10 10 }; 11 11 12 12 # TODO zaptel ? postgres ? 13 - nativeBuildInputs = [ pkgconfig ]; 13 + nativeBuildInputs = [ pkg-config ]; 14 14 buildInputs = [ qt4 openssl ]; 15 15 16 16 # /dev/null is used when linking which is a impure path for the wrapper
+2 -2
pkgs/applications/misc/zathura/cb/default.nix
··· 1 - { stdenv, lib, fetchurl, meson, ninja, pkgconfig, zathura_core 1 + { stdenv, lib, fetchurl, meson, ninja, pkg-config, zathura_core 2 2 , girara, gettext, libarchive }: 3 3 4 4 stdenv.mkDerivation rec { ··· 10 10 sha256 = "1i6cf0vks501cggwvfsl6qb7mdaf3sszdymphimfvnspw810faj5"; 11 11 }; 12 12 13 - nativeBuildInputs = [ meson ninja pkgconfig gettext ]; 13 + nativeBuildInputs = [ meson ninja pkg-config gettext ]; 14 14 buildInputs = [ libarchive zathura_core girara ]; 15 15 16 16 PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura";
+2 -2
pkgs/applications/misc/zathura/core/default.nix
··· 1 - { lib, stdenv, fetchurl, meson, ninja, wrapGAppsHook, pkgconfig 1 + { lib, stdenv, fetchurl, meson, ninja, wrapGAppsHook, pkg-config 2 2 , appstream-glib, desktop-file-utils, python3 3 3 , gtk, girara, gettext, libxml2, check 4 4 , sqlite, glib, texlive, libintl, libseccomp ··· 32 32 ] ++ optional (!stdenv.isLinux) "-Dseccomp=disabled"; 33 33 34 34 nativeBuildInputs = [ 35 - meson ninja pkgconfig desktop-file-utils python3.pkgs.sphinx 35 + meson ninja pkg-config desktop-file-utils python3.pkgs.sphinx 36 36 gettext wrapGAppsHook libxml2 check appstream-glib 37 37 ]; 38 38
+2 -2
pkgs/applications/misc/zathura/djvu/default.nix
··· 1 - { lib, stdenv, fetchurl, meson, ninja, pkgconfig, gtk, zathura_core, girara, djvulibre, gettext }: 1 + { lib, stdenv, fetchurl, meson, ninja, pkg-config, gtk, zathura_core, girara, djvulibre, gettext }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zathura-djvu"; ··· 9 9 sha256 = "0062n236414db7q7pnn3ccg5111ghxj3407pn9ri08skxskgirln"; 10 10 }; 11 11 12 - nativeBuildInputs = [ meson ninja pkgconfig ]; 12 + nativeBuildInputs = [ meson ninja pkg-config ]; 13 13 buildInputs = [ djvulibre gettext zathura_core gtk girara ]; 14 14 15 15 PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura";
+2 -2
pkgs/applications/misc/zathura/pdf-mupdf/default.nix
··· 7 7 , libjpeg 8 8 , mupdf 9 9 , openjpeg_2 10 - , pkgconfig 10 + , pkg-config 11 11 , zathura_core 12 12 }: 13 13 ··· 20 20 sha256 = "1r3v37k9fl2rxipvacgxr36llywvy7n20a25h3ajlyk70697sa66"; 21 21 }; 22 22 23 - nativeBuildInputs = [ meson ninja pkgconfig ]; 23 + nativeBuildInputs = [ meson ninja pkg-config ]; 24 24 25 25 buildInputs = [ 26 26 cairo
+2 -2
pkgs/applications/misc/zathura/pdf-poppler/default.nix
··· 1 - { stdenv, lib, fetchurl, meson, ninja, pkgconfig, zathura_core, girara, poppler }: 1 + { stdenv, lib, fetchurl, meson, ninja, pkg-config, zathura_core, girara, poppler }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zathura-pdf-poppler"; ··· 9 9 sha256 = "1vfl4vkyy3rf39r1sqaa7y8113bgkh2bkfq3nn2inis9mrykmk6m"; 10 10 }; 11 11 12 - nativeBuildInputs = [ meson ninja pkgconfig zathura_core ]; 12 + nativeBuildInputs = [ meson ninja pkg-config zathura_core ]; 13 13 buildInputs = [ poppler girara ]; 14 14 15 15 PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura";
+2 -2
pkgs/applications/misc/zathura/ps/default.nix
··· 1 - { stdenv, lib, fetchurl, meson, ninja, pkgconfig, zathura_core, girara, libspectre, gettext }: 1 + { stdenv, lib, fetchurl, meson, ninja, pkg-config, zathura_core, girara, libspectre, gettext }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zathura-ps"; ··· 9 9 sha256 = "0wygq89nyjrjnsq7vbpidqdsirjm6iq4w2rijzwpk2f83ys8bc3y"; 10 10 }; 11 11 12 - nativeBuildInputs = [ meson ninja pkgconfig gettext ]; 12 + nativeBuildInputs = [ meson ninja pkg-config gettext ]; 13 13 buildInputs = [ libspectre zathura_core girara ]; 14 14 15 15 PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura";
+2 -2
pkgs/applications/networking/browsers/firefox/common.nix
··· 2 2 , src, unpackPhase ? null, patches ? [] 3 3 , extraNativeBuildInputs ? [], extraConfigureFlags ? [], extraMakeFlags ? [] }: 4 4 5 - { lib, stdenv, pkgconfig, pango, perl, python3, zip 5 + { lib, stdenv, pkg-config, pango, perl, python3, zip 6 6 , libjpeg, zlib, dbus, dbus-glib, bzip2, xorg 7 7 , freetype, fontconfig, file, nspr, nss, nss_3_53 8 8 , yasm, libGLU, libGL, sqlite, unzip, makeWrapper ··· 222 222 llvmPackages.llvm # llvm-objdump 223 223 nodejs 224 224 perl 225 - pkgconfig 225 + pkg-config 226 226 python3 227 227 rust-cbindgen 228 228 rustc
+2 -2
pkgs/applications/networking/browsers/luakit/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, wrapGAppsHook 1 + { lib, stdenv, fetchFromGitHub, pkg-config, wrapGAppsHook 2 2 , help2man, luafilesystem, luajit, sqlite 3 3 , webkitgtk, gtk3, gst_all_1, glib-networking 4 4 }: ··· 15 15 }; 16 16 17 17 nativeBuildInputs = [ 18 - pkgconfig help2man wrapGAppsHook 18 + pkg-config help2man wrapGAppsHook 19 19 ]; 20 20 21 21 buildInputs = [
+2 -2
pkgs/applications/networking/browsers/lynx/default.nix
··· 1 1 { lib, stdenv, buildPackages 2 - , fetchurl, pkgconfig, ncurses, gzip 2 + , fetchurl, pkg-config, ncurses, gzip 3 3 , sslSupport ? true, openssl ? null 4 4 , nukeReferences 5 5 }: ··· 30 30 31 31 depsBuildBuild = [ buildPackages.stdenv.cc ]; 32 32 nativeBuildInputs = [ nukeReferences ] 33 - ++ lib.optional sslSupport pkgconfig; 33 + ++ lib.optional sslSupport pkg-config; 34 34 35 35 buildInputs = [ ncurses gzip ] ++ lib.optional sslSupport openssl.dev; 36 36
+3 -3
pkgs/applications/networking/browsers/w3m/default.nix
··· 4 4 , graphicsSupport ? !stdenv.isDarwin, imlib2 ? null 5 5 , x11Support ? graphicsSupport, libX11 ? null 6 6 , mouseSupport ? !stdenv.isDarwin, gpm-ncurses ? null 7 - , perl, man, pkgconfig, buildPackages, w3m 7 + , perl, man, pkg-config, buildPackages, w3m 8 8 }: 9 9 10 10 assert sslSupport -> openssl != null; ··· 18 18 mktable = buildPackages.stdenv.mkDerivation { 19 19 name = "w3m-mktable"; 20 20 inherit (w3m) src; 21 - nativeBuildInputs = [ pkgconfig boehmgc ]; 21 + nativeBuildInputs = [ pkg-config boehmgc ]; 22 22 makeFlags = [ "mktable" ]; 23 23 installPhase = '' 24 24 install -D mktable $out/bin/mktable ··· 59 59 sed -ie 's!mktable.*:.*!mktable:!' Makefile.in 60 60 ''; 61 61 62 - nativeBuildInputs = [ pkgconfig gettext ]; 62 + nativeBuildInputs = [ pkg-config gettext ]; 63 63 buildInputs = [ ncurses boehmgc zlib ] 64 64 ++ optional sslSupport openssl 65 65 ++ optional mouseSupport gpm-ncurses
+2 -2
pkgs/applications/networking/calls/default.nix
··· 2 2 , fetchFromGitLab 3 3 , meson 4 4 , ninja 5 - , pkgconfig 5 + , pkg-config 6 6 , libhandy_0 7 7 , modemmanager 8 8 , gtk3 ··· 35 35 nativeBuildInputs = [ 36 36 meson 37 37 ninja 38 - pkgconfig 38 + pkg-config 39 39 desktop-file-utils 40 40 vala 41 41 wrapGAppsHook
+2 -2
pkgs/applications/networking/cawbird/default.nix
··· 10 10 , vala 11 11 , meson 12 12 , ninja 13 - , pkgconfig 13 + , pkg-config 14 14 , dconf 15 15 , gst_all_1 16 16 , wrapGAppsHook ··· 35 35 meson 36 36 ninja 37 37 vala 38 - pkgconfig 38 + pkg-config 39 39 wrapGAppsHook 40 40 python3 41 41 gobject-introspection # for setup hook
+2 -2
pkgs/applications/networking/cluster/docker-machine/kvm.nix
··· 1 1 # This file was generated by go2nix. 2 - { lib, stdenv, buildGoPackage, fetchFromGitHub, libvirt, pkgconfig }: 2 + { lib, stdenv, buildGoPackage, fetchFromGitHub, libvirt, pkg-config }: 3 3 4 4 buildGoPackage rec { 5 5 pname = "docker-machine-kvm"; ··· 15 15 sha256 = "0ch4zwb6h7hnr5l3skj1daypvpyms2i666lbnmakpw1fw3zvjmgy"; 16 16 }; 17 17 18 - nativeBuildInputs = [ pkgconfig ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 19 buildInputs = [ libvirt ]; 20 20 21 21 meta = with lib; {
+2 -2
pkgs/applications/networking/cluster/docker-machine/xhyve.nix
··· 1 - { lib, stdenv, buildGoPackage, fetchFromGitHub, fetchpatch, pkgconfig, cctools, Hypervisor, vmnet }: 1 + { lib, stdenv, buildGoPackage, fetchFromGitHub, fetchpatch, pkg-config, cctools, Hypervisor, vmnet }: 2 2 3 3 buildGoPackage rec { 4 4 pname = "docker-machine-xhyve"; ··· 26 26 sha256 = "0000v97fr8xc5b39v44hsa87wrbk4bcwyaaivxv4hxlf4vlgg863"; 27 27 }; 28 28 29 - nativeBuildInputs = [ pkgconfig ]; 29 + nativeBuildInputs = [ pkg-config ]; 30 30 buildInputs = [ Hypervisor vmnet ]; 31 31 32 32 meta = with lib; {
+2 -2
pkgs/applications/networking/cluster/habitat/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config 2 2 , libsodium, libarchive, openssl, zeromq }: 3 3 4 4 rustPlatform.buildRustPackage rec { ··· 16 16 17 17 cargoSha256 = "08sncz0jgsr2s821j3s4bk7d54xqwmnld7m57avavym1xqvsnbmy"; 18 18 19 - nativeBuildInputs = [ pkgconfig ]; 19 + nativeBuildInputs = [ pkg-config ]; 20 20 buildInputs = [ libsodium libarchive openssl zeromq ]; 21 21 22 22 cargoBuildFlags = ["--package hab"];
+2 -2
pkgs/applications/networking/cluster/hadoop/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, pkgconfig, which, maven, cmake, jre, bash 1 + { lib, stdenv, fetchurl, makeWrapper, pkg-config, which, maven, cmake, jre, bash 2 2 , coreutils, glibc, protobuf2_5, fuse, snappy, zlib, bzip2, openssl, openssl_1_0_2 3 3 }: 4 4 ··· 34 34 outputHash = dependencies-sha256; 35 35 }; 36 36 37 - nativeBuildInputs = [ maven cmake pkgconfig ]; 37 + nativeBuildInputs = [ maven cmake pkg-config ]; 38 38 buildInputs = [ fuse snappy zlib bzip2 opensslPkg protobuf2_5 ]; 39 39 # most of the hardcoded pathes are fixed in 2.9.x and 3.0.0, this list of patched files might be reduced when 2.7.x and 2.8.x will be deprecated 40 40 postPatch = ''
+3 -3
pkgs/applications/networking/cluster/k3s/default.nix
··· 11 11 , runc 12 12 , kmod 13 13 , libseccomp 14 - , pkgconfig 14 + , pkg-config 15 15 , ethtool 16 16 , util-linux 17 17 , ipset ··· 128 128 129 129 patches = [ ./patches/0001-Use-rm-from-path-in-go-generate.patch ./patches/0002-Add-nixpkgs-patches.patch ]; 130 130 131 - nativeBuildInputs = [ git pkgconfig ]; 131 + nativeBuildInputs = [ git pkg-config ]; 132 132 buildInputs = [ libseccomp ]; 133 133 134 134 buildPhase = '' ··· 168 168 169 169 patches = [ ./patches/0001-Use-rm-from-path-in-go-generate.patch ./patches/0002-Add-nixpkgs-patches.patch ]; 170 170 171 - nativeBuildInputs = [ git pkgconfig ]; 171 + nativeBuildInputs = [ git pkg-config ]; 172 172 # These dependencies are embedded as compressed files in k3s at runtime. 173 173 # Propagate them to avoid broken runtime references to libraries. 174 174 propagatedBuildInputs = [ k3sPlugins k3sBuildStage1 runc ];
+2 -2
pkgs/applications/networking/cluster/minishift/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub, go-bindata, pkgconfig, makeWrapper 1 + { lib, buildGoPackage, fetchFromGitHub, go-bindata, pkg-config, makeWrapper 2 2 , glib, gtk3, libappindicator-gtk3, gpgme, openshift, ostree, libselinux, btrfs-progs 3 3 , lvm2, docker-machine-kvm 4 4 }: ··· 21 21 sha256 = "0yhln3kyc0098hbnjyxhbd915g6j7s692c0z8yrhh9gdpc5cr2aa"; 22 22 }; 23 23 24 - nativeBuildInputs = [ pkgconfig go-bindata makeWrapper ]; 24 + nativeBuildInputs = [ pkg-config go-bindata makeWrapper ]; 25 25 buildInputs = [ glib gtk3 libappindicator-gtk3 gpgme ostree libselinux btrfs-progs lvm2 ]; 26 26 27 27 goPackagePath = "github.com/minishift/minishift";
+2 -2
pkgs/applications/networking/cluster/terraform-providers/libvirt/default.nix
··· 1 - { lib, stdenv, buildGoPackage, fetchFromGitHub, libvirt, pkgconfig, makeWrapper, cdrtools }: 1 + { lib, stdenv, buildGoPackage, fetchFromGitHub, libvirt, pkg-config, makeWrapper, cdrtools }: 2 2 3 3 # USAGE: 4 4 # install the following package globally or in nix-shell: ··· 30 30 sha256 = "0ak2lpnv6h0i7lzfcggd90jpfhvsasdr6nflkflk2drlcpalggj9"; 31 31 }; 32 32 33 - nativeBuildInputs = [ pkgconfig makeWrapper ]; 33 + nativeBuildInputs = [ pkg-config makeWrapper ]; 34 34 35 35 buildInputs = [ libvirt ]; 36 36
+2 -2
pkgs/applications/networking/feedreaders/castget/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 2 , autoreconfHook 3 - , pkgconfig 3 + , pkg-config 4 4 , glib 5 5 , ronn 6 6 , curl ··· 35 35 # See comment on locale above 36 36 glibcLocales 37 37 autoreconfHook 38 - pkgconfig 38 + pkg-config 39 39 ]; 40 40 41 41 meta = with lib; {
+2 -2
pkgs/applications/networking/feedreaders/feedreader/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, nix-update-script, meson, ninja, pkgconfig, vala, gettext, python3 1 + { lib, stdenv, fetchFromGitHub, nix-update-script, meson, ninja, pkg-config, vala, gettext, python3 2 2 , appstream-glib, desktop-file-utils, wrapGAppsHook, gnome-online-accounts 3 3 , gtk3, libgee, libpeas, librest, webkitgtk, gsettings-desktop-schemas, pantheon 4 4 , curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite, gumbo, libxml2 ··· 16 16 }; 17 17 18 18 nativeBuildInputs = [ 19 - meson ninja pkgconfig vala gettext appstream-glib desktop-file-utils 19 + meson ninja pkg-config vala gettext appstream-glib desktop-file-utils 20 20 libxml2 python3 wrapGAppsHook 21 21 ]; 22 22
+2 -2
pkgs/applications/networking/ftp/filezilla/default.nix
··· 7 7 , libfilezilla 8 8 , libidn 9 9 , nettle 10 - , pkgconfig 10 + , pkg-config 11 11 , pugixml 12 12 , sqlite 13 13 , tinyxml ··· 35 35 "--disable-autoupdatecheck" 36 36 ]; 37 37 38 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 38 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 39 39 40 40 buildInputs = [ 41 41 dbus
+2 -2
pkgs/applications/networking/ftp/taxi/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, nix-update-script, pantheon, pkgconfig, meson, ninja, python3, vala 1 + { lib, stdenv, fetchFromGitHub, nix-update-script, pantheon, pkg-config, meson, ninja, python3, vala 2 2 , gtk3, libgee, libsoup, libsecret, gobject-introspection, wrapGAppsHook }: 3 3 4 4 stdenv.mkDerivation rec { ··· 17 17 gobject-introspection 18 18 meson 19 19 ninja 20 - pkgconfig 20 + pkg-config 21 21 python3 22 22 wrapGAppsHook 23 23 ];
+2 -2
pkgs/applications/networking/ids/snort/default.nix
··· 1 - {lib, stdenv, pkgconfig, luajit, openssl, fetchurl, libpcap, pcre, libdnet, daq, zlib, flex, bison, makeWrapper 1 + {lib, stdenv, pkg-config, luajit, openssl, fetchurl, libpcap, pcre, libdnet, daq, zlib, flex, bison, makeWrapper 2 2 , libtirpc 3 3 }: 4 4 ··· 12 12 sha256 = "13lzvjli6kbsnkd7lf0rm71l2mnz38pxk76ia9yrjb6clfhlbb73"; 13 13 }; 14 14 15 - buildInputs = [ makeWrapper pkgconfig luajit openssl libpcap pcre libdnet daq zlib flex bison libtirpc ]; 15 + buildInputs = [ makeWrapper pkg-config luajit openssl libpcap pcre libdnet daq zlib flex bison libtirpc ]; 16 16 17 17 NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ]; 18 18
+2 -2
pkgs/applications/networking/ids/suricata/default.nix
··· 3 3 , fetchurl 4 4 , clang 5 5 , llvm 6 - , pkgconfig 6 + , pkg-config 7 7 , makeWrapper 8 8 , file 9 9 , hyperscan ··· 45 45 clang 46 46 llvm 47 47 makeWrapper 48 - pkgconfig 48 + pkg-config 49 49 ] 50 50 ++ lib.optionals rustSupport [ rustc cargo ] 51 51 ;
+2 -2
pkgs/applications/networking/instant-messengers/baresip/default.nix
··· 1 - { lib, stdenv, fetchurl, zlib, openssl, libre, librem, pkgconfig, gst_all_1 1 + { lib, stdenv, fetchurl, zlib, openssl, libre, librem, pkg-config, gst_all_1 2 2 , cairo, mpg123, alsaLib, SDL, libv4l, celt, libsndfile, srtp, ffmpeg_3 3 3 , gsm, speex, portaudio, spandsp, libuuid, libvpx 4 4 }: ··· 9 9 url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; 10 10 sha256 = "13di0ycdcr2q2a20mjvyaqfmvk5xldwqaxklqsz7470jnbc5n0rb"; 11 11 }; 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [zlib openssl libre librem cairo mpg123 14 14 alsaLib SDL libv4l celt libsndfile srtp ffmpeg_3 gsm speex portaudio spandsp libuuid 15 15 libvpx
+2 -2
pkgs/applications/networking/instant-messengers/bitlbee-discord/default.nix
··· 1 - { lib, fetchFromGitHub, stdenv, bitlbee, autoreconfHook, pkgconfig, glib }: 1 + { lib, fetchFromGitHub, stdenv, bitlbee, autoreconfHook, pkg-config, glib }: 2 2 3 3 with lib; 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "00qgdvrp7hv02n0ns685igp810zxmv3adsama8601122al6x041n"; 13 13 }; 14 14 15 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 16 16 buildInputs = [ bitlbee ]; 17 17 18 18 preConfigure = ''
+2 -2
pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix
··· 1 - { lib, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, json-glib }: 1 + { lib, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkg-config, glib, json-glib }: 2 2 3 3 with lib; 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "1yjhjhk3jzjip13lq009vlg84lm2lzwhac5jy0aq3vkcz6rp94rc"; 13 13 }; 14 14 15 - nativeBuildInputs = [ autoconf automake libtool pkgconfig ]; 15 + nativeBuildInputs = [ autoconf automake libtool pkg-config ]; 16 16 17 17 buildInputs = [ bitlbee json-glib ]; 18 18
+2 -2
pkgs/applications/networking/instant-messengers/bitlbee-mastodon/default.nix
··· 1 - { lib, fetchgit, stdenv, bitlbee, autoreconfHook, pkgconfig, glib }: 1 + { lib, fetchgit, stdenv, bitlbee, autoreconfHook, pkg-config, glib }: 2 2 3 3 with lib; 4 4 stdenv.mkDerivation rec { ··· 11 11 sha256 = "0a8196pyr6bjnqg82zn7jdhiv7xsg4npbpzalla1i2h99j30q8pk"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 buildInputs = [ bitlbee ]; 16 16 17 17 preConfigure = ''
+2 -2
pkgs/applications/networking/instant-messengers/bitlbee-steam/default.nix
··· 1 - { lib, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, libgcrypt }: 1 + { lib, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkg-config, glib, libgcrypt }: 2 2 3 3 with lib; 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "121r92mgwv445wwxzh35n19fs5k81ihr0j19k256ia5502b1xxaq"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkgconfig ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 16 buildInputs = [ bitlbee autoconf automake libtool libgcrypt ]; 17 17 18 18 preConfigure = ''
+2 -2
pkgs/applications/networking/instant-messengers/bitlbee/default.nix
··· 1 - { lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkgconfig, check, libotr, python 1 + { lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkg-config, check, libotr, python 2 2 , enableLibPurple ? false, pidgin ? null 3 3 , enablePam ? false, pam ? null 4 4 }: ··· 12 12 sha256 = "0zhhcbcr59sx9h4maf8zamzv2waya7sbsl7w74gbyilvy93dw5cz"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkgconfig ] ++ optional doCheck check; 15 + nativeBuildInputs = [ pkg-config ] ++ optional doCheck check; 16 16 17 17 buildInputs = [ gnutls libotr python ] 18 18 ++ optional enableLibPurple pidgin
+2 -2
pkgs/applications/networking/instant-messengers/chatterino2/default.nix
··· 1 - { mkDerivation, stdenv, lib, pkgconfig, fetchFromGitHub, qtbase, qtsvg, qtmultimedia, qmake, boost, openssl, wrapQtAppsHook }: 1 + { mkDerivation, stdenv, lib, pkg-config, fetchFromGitHub, qtbase, qtsvg, qtmultimedia, qmake, boost, openssl, wrapQtAppsHook }: 2 2 3 3 mkDerivation rec { 4 4 pname = "chatterino2"; ··· 10 10 sha256 = "026cs48hmqkv7k4akbm205avj2pn3x1g7q46chwa707k9km325dz"; 11 11 fetchSubmodules = true; 12 12 }; 13 - nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ]; 13 + nativeBuildInputs = [ qmake pkg-config wrapQtAppsHook ]; 14 14 buildInputs = [ qtbase qtsvg qtmultimedia boost openssl ]; 15 15 postInstall = lib.optionalString stdenv.isDarwin '' 16 16 mkdir -p "$out/Applications"
+2 -2
pkgs/applications/networking/instant-messengers/coyim/default.nix
··· 1 - { lib, stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, 1 + { lib, stdenv, buildGoPackage, fetchFromGitHub, pkg-config, 2 2 cairo, gdk-pixbuf, glib, gnome3, wrapGAppsHook, gtk3 }: 3 3 4 4 buildGoPackage rec { ··· 14 14 sha256 = "1g8nf56j17rdhhj7pv3ha1rb2mfc0mdvyzl35pgcki08w7iw08j3"; 15 15 }; 16 16 17 - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 17 + nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 18 18 19 19 buildInputs = [ glib cairo gdk-pixbuf gtk3 gnome3.adwaita-icon-theme ]; 20 20
+2 -2
pkgs/applications/networking/instant-messengers/dino/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext 2 + , vala, cmake, ninja, wrapGAppsHook, pkg-config, gettext 3 3 , gobject-introspection, gnome3, glib, gdk-pixbuf, gtk3, glib-networking 4 4 , xorg, libXdmcp, libxkbcommon 5 5 , libnotify, libsoup, libgee ··· 31 31 vala 32 32 cmake 33 33 ninja 34 - pkgconfig 34 + pkg-config 35 35 wrapGAppsHook 36 36 gettext 37 37 ];
+3 -3
pkgs/applications/networking/instant-messengers/freetalk/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , guile, pkgconfig, glib, loudmouth, gmp, libidn, readline, libtool 2 + , guile, pkg-config, glib, loudmouth, gmp, libidn, readline, libtool 3 3 , libunwind, ncurses, curl, jansson, texinfo 4 4 , automake, autoconf }: 5 5 stdenv.mkDerivation rec { 6 6 pname = "freetalk"; 7 7 version = "4.1"; 8 - 8 + 9 9 src = fetchFromGitHub { 10 10 owner = "GNUFreetalk"; 11 11 repo = "freetalk"; ··· 17 17 ./autogen.sh 18 18 ''; 19 19 20 - nativeBuildInputs = [ pkgconfig texinfo autoconf automake ]; 20 + nativeBuildInputs = [ pkg-config texinfo autoconf automake ]; 21 21 buildInputs = [ 22 22 guile glib loudmouth gmp libidn readline libtool 23 23 libunwind ncurses curl jansson
+2 -2
pkgs/applications/networking/instant-messengers/linphone/default.nix
··· 36 36 , openldap 37 37 , ortp 38 38 , pango 39 - , pkgconfig 39 + , pkg-config 40 40 , python 41 41 , qtbase 42 42 , qtgraphicaleffects ··· 125 125 graphviz 126 126 intltool 127 127 makeWrapper 128 - pkgconfig 128 + pkg-config 129 129 ]; 130 130 131 131 cmakeFlags = [
+2 -2
pkgs/applications/networking/instant-messengers/mcabber/default.nix
··· 1 - { lib, stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr 1 + { lib, stdenv, fetchurl, openssl, ncurses, pkg-config, glib, loudmouth, libotr 2 2 , gpgme 3 3 }: 4 4 ··· 11 11 sha256 = "0q1i5acyghsmzas88qswvki8kkk2nfpr8zapgnxbcd3lwcxl38f4"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ openssl ncurses glib loudmouth libotr gpgme ]; 16 16 17 17 configureFlags = [
+2 -2
pkgs/applications/networking/instant-messengers/mirage/default.nix
··· 1 1 { lib, stdenv, mkDerivation, fetchFromGitHub 2 - , qmake, pkgconfig, olm, wrapQtAppsHook 2 + , qmake, pkg-config, olm, wrapQtAppsHook 3 3 , qtbase, qtquickcontrols2, qtkeychain, qtmultimedia, qttools, qtgraphicaleffects 4 4 , python3Packages, pyotherside, libXScrnSaver 5 5 }: ··· 23 23 fetchSubmodules = true; 24 24 }; 25 25 26 - nativeBuildInputs = [ pkgconfig qmake wrapQtAppsHook python3Packages.wrapPython ]; 26 + nativeBuildInputs = [ pkg-config qmake wrapQtAppsHook python3Packages.wrapPython ]; 27 27 28 28 buildInputs = [ 29 29 qtbase qtmultimedia
+2 -2
pkgs/applications/networking/instant-messengers/nheko/default.nix
··· 19 19 , spdlog 20 20 , fmt 21 21 , olm 22 - , pkgconfig 22 + , pkg-config 23 23 , nlohmann_json 24 24 }: 25 25 ··· 37 37 nativeBuildInputs = [ 38 38 lmdbxx 39 39 cmake 40 - pkgconfig 40 + pkg-config 41 41 ]; 42 42 43 43 buildInputs = [
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/carbons/default.nix
··· 1 - { lib, stdenv, libxml2, pidgin, pkgconfig, fetchFromGitHub } : 1 + { lib, stdenv, libxml2, pidgin, pkg-config, fetchFromGitHub } : 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pidgin-carbons"; ··· 13 13 14 14 makeFlags = [ "PURPLE_PLUGIN_DIR=$(out)/lib/pidgin" ]; 15 15 16 - nativeBuildInputs = [ pkgconfig ]; 16 + nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ libxml2 pidgin ]; 18 18 19 19 meta = with lib; {
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, pidgin, texLive, imagemagick, glib, gtk2 }: 1 + { lib, stdenv, fetchurl, pkg-config, pidgin, texLive, imagemagick, glib, gtk2 }: 2 2 3 3 let version = "1.5.0"; 4 4 in ··· 11 11 sha256 = "9c850aee90d7e59de834f83e09fa6e3e51b123f06e265ead70957608ada95441"; 12 12 }; 13 13 14 - nativeBuildInputs = [pkgconfig]; 14 + nativeBuildInputs = [pkg-config]; 15 15 buildInputs = [gtk2 glib pidgin]; 16 16 makeFlags = [ "PREFIX=$(out)" ]; 17 17
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-mra/default.nix
··· 1 - { lib, stdenv, fetchgit, pkgconfig, pidgin } : 1 + { lib, stdenv, fetchgit, pkg-config, pidgin } : 2 2 3 3 let 4 4 version = "54b2992"; ··· 13 13 sha256 = "1adq57g11kw7bfpivyvfk3nlpjkc8raiw4bzn3gn4nx3m0wl99vw"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig ]; 16 + nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ pidgin ]; 18 18 19 19 postPatch = ''
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, pidgin, glib, json-glib, nss, nspr 1 + { lib, stdenv, fetchFromGitHub, pkg-config, pidgin, glib, json-glib, nss, nspr 2 2 , libsecret 3 3 } : 4 4 ··· 21 21 ]; 22 22 23 23 nativeBuildInputs = [ 24 - pkgconfig 24 + pkg-config 25 25 ]; 26 26 buildInputs = [ 27 27 pidgin glib json-glib nss nspr libsecret
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-skypeweb/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, pidgin, json-glib }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, pidgin, json-glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pidgin-skypeweb"; ··· 15 15 sourceRoot=$(echo */skypeweb) 16 16 ''; 17 17 18 - nativeBuildInputs = [ pkgconfig ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 19 buildInputs = [ pidgin json-glib ]; 20 20 21 21 PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-discord/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, pidgin, json-glib }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, pidgin, json-glib }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "purple-discord"; ··· 11 11 sha256 = "0dc344zh1v4yh9c8javcw5ylzwc1wpx0ih8bww8p8cjmhr8kcl32"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ pidgin json-glib ]; 16 16 17 17 PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-matrix/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, pidgin, json-glib, glib, http-parser, sqlite, olm, libgcrypt } : 1 + { lib, stdenv, fetchFromGitHub, pkg-config, pidgin, json-glib, glib, http-parser, sqlite, olm, libgcrypt } : 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "purple-matrix-unstable"; ··· 18 18 "-O3" "-Wno-error" 19 19 ]; 20 20 21 - nativeBuildInputs = [ pkgconfig ]; 21 + nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ pidgin json-glib glib http-parser sqlite olm libgcrypt ]; 23 23 24 24 makeFlags = [
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-slack/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pidgin, pkgconfig }: 1 + { lib, stdenv, fetchFromGitHub, pidgin, pkg-config }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "purple-slack-unstable"; ··· 11 11 sha256 = "1sksqshiwldd32k8jmiflp2pcax31ym6rypr4qa4v5vdn907g80m"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ pidgin ]; 16 16 17 17 PKG_CONFIG_PURPLE_PLUGINDIR = "${placeholder "out"}/lib/purple-2";
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/skype4pidgin/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, pidgin, libnotify, gdk-pixbuf, glib, dbus 1 + { lib, stdenv, fetchurl, pkg-config, pidgin, libnotify, gdk-pixbuf, glib, dbus 2 2 , dbus-glib }: 3 3 4 4 stdenv.mkDerivation rec { ··· 29 29 30 30 postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr"; 31 31 32 - nativeBuildInputs = [ pkgconfig ]; 32 + nativeBuildInputs = [ pkg-config ]; 33 33 buildInputs = [ pidgin libnotify gdk-pixbuf glib dbus dbus-glib ]; 34 34 35 35 meta = {
+2 -2
pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix
··· 1 - { lib, stdenv, fetchgit, pkgconfig, pidgin, libwebp, libgcrypt, gettext } : 1 + { lib, stdenv, fetchgit, pkg-config, pidgin, libwebp, libgcrypt, gettext } : 2 2 3 3 let 4 4 version = "1.3.1"; ··· 15 15 16 16 NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type"; 17 17 18 - nativeBuildInputs = [ pkgconfig ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 19 buildInputs = [ pidgin libwebp libgcrypt gettext ]; 20 20 21 21 preConfigure = ''
+2 -2
pkgs/applications/networking/instant-messengers/pidgin/default.nix
··· 1 - { stdenv, fetchurl, makeWrapper, pkgconfig, gtk2, gtk2-x11 1 + { stdenv, fetchurl, makeWrapper, pkg-config, gtk2, gtk2-x11 2 2 , gtkspell2, aspell 3 3 , gst_all_1, startupnotification, gettext 4 4 , perlPackages, libxml2, nss, nspr, farstream ··· 44 44 ++ (lib.optional (stdenv.isDarwin) gtk2-x11); 45 45 46 46 47 - propagatedBuildInputs = [ pkgconfig gettext ] 47 + propagatedBuildInputs = [ pkg-config gettext ] 48 48 ++ (with perlPackages; [ perl XMLParser ]) 49 49 ++ (lib.optional (stdenv.isLinux) gtk2) 50 50 ++ (lib.optional (stdenv.isDarwin) gtk2-x11);
+2 -2
pkgs/applications/networking/instant-messengers/poezio/default.nix
··· 1 1 { lib, buildPythonApplication, fetchFromGitHub, pythonOlder 2 - , pytest, aiodns, slixmpp, pyinotify, potr, mpd2, cffi, pkgconfig, setuptools }: 2 + , pytest, aiodns, slixmpp, pyinotify, potr, mpd2, cffi, pkg-config, setuptools }: 3 3 buildPythonApplication rec { 4 4 pname = "poezio"; 5 5 version = "0.13.1"; ··· 8 8 9 9 checkInputs = [ pytest ]; 10 10 propagatedBuildInputs = [ aiodns slixmpp pyinotify potr mpd2 cffi setuptools ]; 11 - nativeBuildInputs = [ pkgconfig ]; 11 + nativeBuildInputs = [ pkg-config ]; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = pname;
+2 -2
pkgs/applications/networking/instant-messengers/pond/default.nix
··· 1 - { lib, stdenv, buildGoPackage, trousers, dclxvi, wrapGAppsHook, pkgconfig, gtk3, gtkspell3, 1 + { lib, stdenv, buildGoPackage, trousers, dclxvi, wrapGAppsHook, pkg-config, gtk3, gtkspell3, 2 2 fetchgit }: 3 3 4 4 let ··· 19 19 20 20 goDeps = ./deps.nix; 21 21 22 - nativeBuildInputs = [ pkgconfig ]; 22 + nativeBuildInputs = [ pkg-config ]; 23 23 buildInputs = [ trousers gtk3 gtkspell3 ] 24 24 ++ lib.optional stdenv.hostPlatform.isx86_64 dclxvi 25 25 ++ lib.optionals gui [ wrapGAppsHook ];
+2 -2
pkgs/applications/networking/instant-messengers/profanity/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, openssl 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, openssl 2 2 , glibcLocales, expect, ncurses, libotr, curl, readline, libuuid 3 3 , cmocka, libmicrohttpd, expat, sqlite, libmesode, autoconf-archive 4 4 ··· 37 37 enableParallelBuilding = true; 38 38 39 39 nativeBuildInputs = [ 40 - autoreconfHook autoconf-archive glibcLocales pkgconfig 40 + autoreconfHook autoconf-archive glibcLocales pkg-config 41 41 ]; 42 42 43 43 buildInputs = [
+2 -2
pkgs/applications/networking/instant-messengers/ricochet/default.nix
··· 1 - { mkDerivation, lib, stdenv, fetchurl, pkgconfig, makeDesktopItem 1 + { mkDerivation, lib, stdenv, fetchurl, pkg-config, makeDesktopItem 2 2 , qtbase, qttools, qtmultimedia, qtquick1, qtquickcontrols 3 3 , openssl, protobuf, qmake 4 4 }: ··· 27 27 openssl protobuf 28 28 ]; 29 29 30 - nativeBuildInputs = [ pkgconfig qmake ]; 30 + nativeBuildInputs = [ pkg-config qmake ]; 31 31 32 32 preConfigure = '' 33 33 export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags openssl)"
+2 -2
pkgs/applications/networking/instant-messengers/ring-daemon/default.nix
··· 2 2 , fetchgit 3 3 , which 4 4 , autoreconfHook 5 - , pkgconfig 5 + , pkg-config 6 6 , automake 7 7 , libtool 8 8 , pjsip ··· 89 89 autoreconfHook 90 90 automake 91 91 libtool 92 - pkgconfig 92 + pkg-config 93 93 ]; 94 94 95 95 buildInputs = [
+2 -2
pkgs/applications/networking/instant-messengers/silc-client/default.nix
··· 1 - { lib, stdenv, fetchurl, perl, pkgconfig, glib, ncurses 1 + { lib, stdenv, fetchurl, perl, pkg-config, glib, ncurses 2 2 , enablePlugin ? false }: 3 3 4 4 # Enabling the plugin and using it with a recent irssi, segafults on join: ··· 27 27 configureFlags="$configureFlags --with-silc-plugin=$out/lib/irssi" 28 28 ''; 29 29 30 - nativeBuildInputs = [ pkgconfig ]; 30 + nativeBuildInputs = [ pkg-config ]; 31 31 buildInputs = [ perl glib ncurses ]; 32 32 33 33 meta = {
+2 -2
pkgs/applications/networking/instant-messengers/swift-im/default.nix
··· 1 - { mkDerivation, lib, stdenv, fetchurl, pkgconfig, qttools, sconsPackages 1 + { mkDerivation, lib, stdenv, fetchurl, pkg-config, qttools, sconsPackages 2 2 , GConf, avahi, boost, hunspell, libXScrnSaver, libedit, libidn, libnatpmp, libxml2 3 3 , lua, miniupnpc, openssl, qtbase, qtmultimedia, qtsvg, qtwebkit, qtx11extras, zlib 4 4 }: ··· 14 14 15 15 patches = [ ./qt-5.11.patch ./scons.patch ]; 16 16 17 - nativeBuildInputs = [ pkgconfig qttools sconsPackages.scons_3_1_2 ]; 17 + nativeBuildInputs = [ pkg-config qttools sconsPackages.scons_3_1_2 ]; 18 18 19 19 buildInputs = [ 20 20 GConf avahi boost hunspell libXScrnSaver libedit libidn libnatpmp libxml2
+2 -2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 1 1 { mkDerivation, lib, fetchurl, callPackage 2 - , pkgconfig, cmake, ninja, python3, wrapGAppsHook, wrapQtAppsHook, removeReferencesTo 2 + , pkg-config, cmake, ninja, python3, wrapGAppsHook, wrapQtAppsHook, removeReferencesTo 3 3 , qtbase, qtimageformats, gtk3, libsForQt5, enchant2, lz4, xxHash 4 4 , dee, ffmpeg, openalSoft, minizip, libopus, alsaLib, libpulseaudio, range-v3 5 5 , tl-expected, hunspell ··· 41 41 dontWrapGApps = true; 42 42 dontWrapQtApps = true; 43 43 44 - nativeBuildInputs = [ pkgconfig cmake ninja python3 wrapGAppsHook wrapQtAppsHook removeReferencesTo ]; 44 + nativeBuildInputs = [ pkg-config cmake ninja python3 wrapGAppsHook wrapQtAppsHook removeReferencesTo ]; 45 45 46 46 buildInputs = [ 47 47 qtbase qtimageformats gtk3 libsForQt5.libdbusmenu enchant2 lz4 xxHash
+2 -2
pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, libxslt, telepathy-glib, libxml2, dbus-glib, dbus 1 + { lib, stdenv, fetchurl, pkg-config, libxslt, telepathy-glib, libxml2, dbus-glib, dbus 2 2 , sqlite, libsoup, libnice, gnutls}: 3 3 4 4 stdenv.mkDerivation rec { ··· 9 9 sha256 = "174nlkqm055vrhv11gy73m20jbsggcb0ddi51c7s9m3j5ibr2p0i"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig libxslt ]; 12 + nativeBuildInputs = [ pkg-config libxslt ]; 13 13 buildInputs = [ libxml2 dbus-glib sqlite libsoup libnice telepathy-glib gnutls telepathy-glib.python ]; 14 14 15 15 checkInputs = [ dbus.daemon ];
+2 -2
pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, pidgin, telepathy-glib, glib, dbus-glib, pkgconfig, libxslt }: 1 + { lib, stdenv, fetchurl, fetchpatch, pidgin, telepathy-glib, glib, dbus-glib, pkg-config, libxslt }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "telepathy-haze"; ··· 11 11 12 12 buildInputs = [ glib telepathy-glib dbus-glib pidgin telepathy-glib.python ]; 13 13 14 - nativeBuildInputs = [ pkgconfig libxslt ]; 14 + nativeBuildInputs = [ pkg-config libxslt ]; 15 15 16 16 patches = [ 17 17 # Patch from Gentoo that helps telepathy-haze build with more
+2 -2
pkgs/applications/networking/instant-messengers/telepathy/idle/default.nix
··· 1 - { lib, stdenv, fetchurl, glib, dconf, pkgconfig, dbus-glib, telepathy-glib, libxslt, makeWrapper }: 1 + { lib, stdenv, fetchurl, glib, dconf, pkg-config, dbus-glib, telepathy-glib, libxslt, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "telepathy-idle"; ··· 9 9 sha256 = "1argdzbif1vdmwp5vqbgkadq9ancjmgdm2ncp0qfckni715ss4rh"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ glib telepathy-glib dbus-glib libxslt telepathy-glib.python (lib.getLib dconf) makeWrapper ]; 14 14 15 15 preFixup = ''
+2 -2
pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix
··· 1 - { lib, stdenv, fetchurl, dbus-glib, libxml2, sqlite, telepathy-glib, pkgconfig 1 + { lib, stdenv, fetchurl, dbus-glib, libxml2, sqlite, telepathy-glib, pkg-config 2 2 , dconf, makeWrapper, intltool, libxslt, gobject-introspection, dbus }: 3 3 4 4 stdenv.mkDerivation rec { ··· 11 11 }; 12 12 13 13 nativeBuildInputs = [ 14 - makeWrapper pkgconfig intltool libxslt gobject-introspection 14 + makeWrapper pkg-config intltool libxslt gobject-introspection 15 15 ]; 16 16 buildInputs = [ 17 17 dbus-glib libxml2 sqlite telepathy-glib
+2 -2
pkgs/applications/networking/instant-messengers/telepathy/salut/default.nix
··· 1 1 { lib, stdenv, fetchurl, libxslt, glib, libxml2, telepathy-glib, avahi, libsoup 2 - , libuuid, openssl, pcre, sqlite, pkgconfig }: 2 + , libuuid, openssl, pcre, sqlite, pkg-config }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "telepathy-salut"; ··· 14 14 buildInputs = [ glib libxml2 telepathy-glib avahi libsoup libuuid openssl 15 15 sqlite pcre telepathy-glib.python ]; 16 16 17 - nativeBuildInputs = [ libxslt pkgconfig ]; 17 + nativeBuildInputs = [ libxslt pkg-config ]; 18 18 19 19 configureFlags = [ "--disable-avahi-tests" ]; 20 20
+2 -2
pkgs/applications/networking/instant-messengers/toxic/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, libsodium, ncurses, curl 2 - , libtoxcore, openal, libvpx, freealut, libconfig, pkgconfig, libopus 2 + , libtoxcore, openal, libvpx, freealut, libconfig, pkg-config, libopus 3 3 , qrencode, gdk-pixbuf, libnotify }: 4 4 5 5 stdenv.mkDerivation rec { ··· 21 21 ] ++ lib.optionals (!stdenv.isAarch32) [ 22 22 openal libopus libvpx freealut qrencode 23 23 ]; 24 - nativeBuildInputs = [ pkgconfig libconfig ]; 24 + nativeBuildInputs = [ pkg-config libconfig ]; 25 25 26 26 meta = with lib; { 27 27 description = "Reference CLI for Tox";
+2 -2
pkgs/applications/networking/instant-messengers/utox/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, check, cmake, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, check, cmake, pkg-config 2 2 , libtoxcore, filter-audio, dbus, libvpx, libX11, openal, freetype, libv4l 3 3 , libXrender, fontconfig, libXext, libXft, libsodium, libopus }: 4 4 ··· 22 22 ]; 23 23 24 24 nativeBuildInputs = [ 25 - cmake pkgconfig 25 + cmake pkg-config 26 26 ]; 27 27 28 28 cmakeFlags = [
+2 -2
pkgs/applications/networking/irc/hexchat/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, pkgconfig, gtk2, lua, perl, python3 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, gtk2, lua, perl, python3 2 2 , pciutils, dbus-glib, libcanberra-gtk2, libproxy 3 3 , enchant2, libnotify, openssl, isocodes 4 4 , desktop-file-utils ··· 16 16 sha256 = "08kvp0dcn3bvmlqcfp9312075bwkqkpa8m7zybr88pfp210gfl85"; 17 17 }; 18 18 19 - nativeBuildInputs = [ meson ninja pkgconfig ]; 19 + nativeBuildInputs = [ meson ninja pkg-config ]; 20 20 21 21 buildInputs = [ 22 22 gtk2 lua perl python3 pciutils dbus-glib libcanberra-gtk2 libproxy
+2 -2
pkgs/applications/networking/irc/irssi/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr }: 1 + { lib, stdenv, fetchurl, pkg-config, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "irssi"; ··· 9 9 sha256 = "0g2nxazn4lszmd6mf1s36x5ablk4999g1qx7byrnvgnjsihjh62k"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ ncurses glib openssl perl libintl libgcrypt libotr ]; 14 14 15 15 configureFlags = [
+2 -2
pkgs/applications/networking/irc/irssi/fish/default.nix
··· 1 - { lib, stdenv, fetchurl, irssi, gmp, automake, autoconf, libtool, openssl, glib, pkgconfig }: 1 + { lib, stdenv, fetchurl, irssi, gmp, automake, autoconf, libtool, openssl, glib, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "fish-irssi-20130413-e98156bebd"; ··· 21 21 cp src/.libs/libfish.so $out/lib/irssi/modules 22 22 ''; 23 23 24 - nativeBuildInputs = [ pkgconfig ]; 24 + nativeBuildInputs = [ pkg-config ]; 25 25 buildInputs = [ gmp automake autoconf libtool openssl glib ]; 26 26 27 27 meta = {
+2 -2
pkgs/applications/networking/irc/kvirc/default.nix
··· 1 1 { lib, mkDerivation, fetchFromGitHub 2 2 , qtbase, qtmultimedia, qtsvg, qtx11extras 3 - , pkgconfig, cmake, gettext 3 + , pkg-config, cmake, gettext 4 4 }: 5 5 6 6 mkDerivation rec { ··· 19 19 ]; 20 20 21 21 nativeBuildInputs = [ 22 - pkgconfig cmake gettext 22 + pkg-config cmake gettext 23 23 ]; 24 24 25 25 meta = with lib; {
+2 -2
pkgs/applications/networking/libcoap/default.nix
··· 1 - { fetchFromGitHub, automake, autoconf, which, pkgconfig, libtool, lib, stdenv }: 1 + { fetchFromGitHub, automake, autoconf, which, pkg-config, libtool, lib, stdenv }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "libcoap"; 4 4 version = "4.2.1"; ··· 14 14 autoconf 15 15 which 16 16 libtool 17 - pkgconfig 17 + pkg-config 18 18 ]; 19 19 preConfigure = "./autogen.sh"; 20 20 configureFlags = [
+2 -2
pkgs/applications/networking/mailreaders/balsa/default.nix
··· 15 15 , libnotify 16 16 , libsecret 17 17 , openssl 18 - , pkgconfig 18 + , pkg-config 19 19 , webkitgtk 20 20 , wrapGAppsHook 21 21 }: ··· 30 30 }; 31 31 32 32 nativeBuildInputs = [ 33 - pkgconfig 33 + pkg-config 34 34 intltool 35 35 gobject-introspection 36 36 wrapGAppsHook
+2 -2
pkgs/applications/networking/mailreaders/claws-mail/default.nix
··· 1 1 { lib, config, fetchurl, stdenv, wrapGAppsHook, autoreconfHook 2 2 , curl, dbus, dbus-glib, enchant, gtk2, gnutls, gnupg, gpgme, gumbo 3 3 , libarchive, libcanberra-gtk2, libetpan, libnotify, libsoup, libxml2, networkmanager 4 - , openldap, perl, pkgconfig, poppler, python, shared-mime-info 4 + , openldap, perl, pkg-config, poppler, python, shared-mime-info 5 5 , glib-networking, gsettings-desktop-schemas, libSM, libytnef, libical 6 6 # Build options 7 7 # TODO: A flag to build the manual. ··· 54 54 --subst-var-by MIMEROOTDIR ${shared-mime-info}/share 55 55 ''; 56 56 57 - nativeBuildInputs = [ autoreconfHook pkgconfig wrapGAppsHook python.pkgs.wrapPython ]; 57 + nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook python.pkgs.wrapPython ]; 58 58 propagatedBuildInputs = with python.pkgs; [ python ] ++ optionals enablePluginPython [ pygtk pygobject2 ]; 59 59 60 60 buildInputs =
+2 -2
pkgs/applications/networking/mailreaders/claws-mail/gtk3.nix
··· 1 1 { lib, config, fetchgit, stdenv, wrapGAppsHook, autoreconfHook, bison, flex 2 2 , curl, dbus, dbus-glib, enchant, gtk3, gnutls, gnupg, gpgme 3 3 , libarchive, libcanberra-gtk3, libetpan, libnotify, libsoup, libxml2, networkmanager 4 - , openldap, perl, pkgconfig, poppler, python, shared-mime-info, webkitgtk 4 + , openldap, perl, pkg-config, poppler, python, shared-mime-info, webkitgtk 5 5 , glib-networking, gsettings-desktop-schemas, libSM, libytnef, libical 6 6 # Build options 7 7 # TODO: A flag to build the manual. ··· 55 55 --subst-var-by MIMEROOTDIR ${shared-mime-info}/share 56 56 ''; 57 57 58 - nativeBuildInputs = [ autoreconfHook bison flex pkgconfig wrapGAppsHook python.pkgs.wrapPython ]; 58 + nativeBuildInputs = [ autoreconfHook bison flex pkg-config wrapGAppsHook python.pkgs.wrapPython ]; 59 59 propagatedBuildInputs = with python.pkgs; [ python ] ++ optionals enablePluginPython [ pygtk pygobject2 ]; 60 60 61 61 buildInputs =
+2 -2
pkgs/applications/networking/mailreaders/hasmail/default.nix
··· 1 1 { lib 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 - , pkgconfig 4 + , pkg-config 5 5 , gobject-introspection 6 6 , pango 7 7 , cairo ··· 24 24 doCheck = false; 25 25 26 26 nativeBuildInputs = [ 27 - pkgconfig 27 + pkg-config 28 28 ]; 29 29 30 30 buildInputs = [
+2 -2
pkgs/applications/networking/mailreaders/lumail/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, lua, file, ncurses, gmime, pcre-cpp 1 + { lib, stdenv, fetchurl, pkg-config, lua, file, ncurses, gmime, pcre-cpp 2 2 , perl, perlPackages, makeWrapper 3 3 , debugBuild ? false 4 4 , alternativeGlobalConfigFilePath ? null ··· 35 35 36 36 enableParallelBuilding = true; 37 37 38 - nativeBuildInputs = [ pkgconfig makeWrapper ]; 38 + nativeBuildInputs = [ pkg-config makeWrapper ]; 39 39 buildInputs = [ 40 40 lua file ncurses gmime pcre-cpp 41 41 perl perlPackages.JSON perlPackages.NetIMAPClient
+2 -2
pkgs/applications/networking/mailreaders/meli/default.nix
··· 2 2 , lib 3 3 , fetchgit 4 4 , rustPlatform 5 - , pkgconfig 5 + , pkg-config 6 6 , openssl 7 7 , dbus 8 8 , sqlite ··· 28 28 29 29 cargoBuildFlags = lib.optional withNotmuch "--features=notmuch"; 30 30 31 - nativeBuildInputs = [ pkgconfig gzip makeWrapper ]; 31 + nativeBuildInputs = [ pkg-config gzip makeWrapper ]; 32 32 33 33 buildInputs = [ openssl dbus sqlite ] ++ lib.optional withNotmuch notmuch; 34 34
+2 -2
pkgs/applications/networking/mailreaders/notbit/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, 2 2 gettext, openssl 3 3 }: 4 4 ··· 15 15 sha256 = "1623n0lvx42mamvb2vwin5i38hh0nxpxzmkr5188ss2x7m20lmii"; 16 16 }; 17 17 18 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 18 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 19 19 20 20 buildInputs = [ openssl gettext ]; 21 21
+2 -2
pkgs/applications/networking/mailreaders/notmuch-addrlookup/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, glib, notmuch }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, glib, notmuch }: 2 2 3 3 let 4 4 version = "9"; ··· 14 14 sha256 = "1j3zdx161i1x4w0nic14ix5i8hd501rb31daf8api0k8855sx4rc"; 15 15 }; 16 16 17 - nativeBuildInputs = [ pkgconfig ]; 17 + nativeBuildInputs = [ pkg-config ]; 18 18 buildInputs = [ glib notmuch ]; 19 19 20 20 installPhase = "install -D notmuch-addrlookup $out/bin/notmuch-addrlookup";
+2 -2
pkgs/applications/networking/mailreaders/notmuch/default.nix
··· 1 1 { fetchurl, fetchgit, lib, stdenv 2 - , pkgconfig, gnupg 2 + , pkg-config, gnupg 3 3 , xapian, gmime, talloc, zlib 4 4 , doxygen, perl, texinfo 5 5 , pythonPackages ··· 27 27 }; 28 28 29 29 nativeBuildInputs = [ 30 - pkgconfig 30 + pkg-config 31 31 doxygen # (optional) api docs 32 32 pythonPackages.sphinx # (optional) documentation -> doc/INSTALL 33 33 texinfo # (optional) documentation -> doc/INSTALL
+2 -2
pkgs/applications/networking/mailreaders/notmuch/muchsync.nix
··· 1 1 { lib, stdenv, fetchurl 2 - , notmuch, openssl, pkgconfig, sqlite, xapian, zlib 2 + , notmuch, openssl, pkg-config, sqlite, xapian, zlib 3 3 }: 4 4 stdenv.mkDerivation rec { 5 5 version = "5"; ··· 11 11 url = "http://www.muchsync.org/src/${pname}-${version}.tar.gz"; 12 12 sha256 = "1k2m44pj5i6vfhp9icdqs42chsp208llanc666p3d9nww8ngq2lb"; 13 13 }; 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ notmuch openssl sqlite xapian zlib ]; 16 16 meta = { 17 17 description = "Synchronize maildirs and notmuch databases";
+2 -2
pkgs/applications/networking/mailreaders/sylpheed/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, gtk2, openssl ? null, gpgme ? null 1 + { lib, stdenv, fetchurl, pkg-config, gtk2, openssl ? null, gpgme ? null 2 2 , gpgSupport ? true, sslSupport ? true }: 3 3 4 4 assert gpgSupport -> gpgme != null; ··· 15 15 sha256 = "0j9y5vdzch251s264diw9clrn88dn20bqqkwfmis9l7m8vmwasqd"; 16 16 }; 17 17 18 - nativeBuildInputs = [ pkgconfig ]; 18 + nativeBuildInputs = [ pkg-config ]; 19 19 20 20 buildInputs = [ gtk2 ] 21 21 ++ optionals gpgSupport [ gpgme ]
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/68.nix
··· 37 37 , nss 38 38 , pango 39 39 , perl 40 - , pkgconfig 40 + , pkg-config 41 41 , python2 42 42 , python3 43 43 , runtimeShell ··· 91 91 nasm 92 92 nodejs 93 93 perl 94 - pkgconfig 94 + pkg-config 95 95 python2 96 96 python3 97 97 rust-cbindgen
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/default.nix
··· 38 38 , nss_3_53 39 39 , pango 40 40 , perl 41 - , pkgconfig 41 + , pkg-config 42 42 , python2 43 43 , python3 44 44 , runtimeShell ··· 92 92 nasm 93 93 nodejs 94 94 perl 95 - pkgconfig 95 + pkg-config 96 96 python2 97 97 python3 98 98 rust-cbindgen
+2 -2
pkgs/applications/networking/mailreaders/trojita/default.nix
··· 10 10 , libsecret 11 11 , mimetic 12 12 , mkDerivation 13 - , pkgconfig 13 + , pkg-config 14 14 , qgpgme 15 15 , qtbase 16 16 , qtkeychain ··· 59 59 60 60 nativeBuildInputs = [ 61 61 cmake 62 - pkgconfig 62 + pkg-config 63 63 qttools 64 64 gnupg 65 65 ];
+2 -2
pkgs/applications/networking/modem-manager-gui/default.nix
··· 1 1 { lib, stdenv 2 - , pkgconfig 2 + , pkg-config 3 3 , python3 4 4 , fetchFromGitLab 5 5 , gtk3 ··· 28 28 }; 29 29 30 30 nativeBuildInputs = [ 31 - pkgconfig 31 + pkg-config 32 32 python3 33 33 perlPackages.Po4a 34 34 itstool
+2 -2
pkgs/applications/networking/nextcloud-client/default.nix
··· 7 7 , libsecret 8 8 , openssl 9 9 , pcre 10 - , pkgconfig 10 + , pkg-config 11 11 , qtbase 12 12 , qtkeychain 13 13 , qttools ··· 33 33 ]; 34 34 35 35 nativeBuildInputs = [ 36 - pkgconfig 36 + pkg-config 37 37 cmake 38 38 ]; 39 39
+2 -2
pkgs/applications/networking/nntp-proxy/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libconfig, pkgconfig, libevent, openssl }: 1 + { lib, stdenv, fetchFromGitHub, libconfig, pkg-config, libevent, openssl }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "nntp-proxy"; ··· 11 11 sha256 = "0jwxh71am83fbnq9mn06jl06rq8qybm506js79xmmc3xbk5pqvy4"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ libconfig libevent openssl ]; 16 16 17 17 installFlags = [ "INSTALL_DIR=$(out)/bin/" ];
+2 -2
pkgs/applications/networking/ping/default.nix
··· 4 4 , meson 5 5 , ninja 6 6 , vala 7 - , pkgconfig 7 + , pkg-config 8 8 , pantheon 9 9 , python3 10 10 , glib ··· 32 32 meson 33 33 ninja 34 34 vala_0_40 35 - pkgconfig 35 + pkg-config 36 36 python3 37 37 wrapGAppsHook 38 38 ];
+2 -2
pkgs/applications/networking/qv2ray/default.nix
··· 8 8 , grpc 9 9 , protobuf 10 10 , openssl 11 - , pkgconfig 11 + , pkg-config 12 12 , c-ares 13 13 , abseil-cpp 14 14 , libGL ··· 51 51 nativeBuildInputs = [ 52 52 cmake 53 53 clang 54 - pkgconfig 54 + pkg-config 55 55 qmake 56 56 qttools 57 57 ];
+2 -2
pkgs/applications/networking/seafile-client/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools 1 + { mkDerivation, lib, fetchFromGitHub, pkg-config, cmake, qtbase, qttools 2 2 , seafile-shared, jansson, libsearpc 3 3 , withShibboleth ? true, qtwebengine }: 4 4 ··· 13 13 sha256 = "2vV+6ZXjVg81JVLfWeD0UK+RdmpBxBU2Ozx790WFSyw="; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig cmake ]; 16 + nativeBuildInputs = [ pkg-config cmake ]; 17 17 buildInputs = [ qtbase qttools seafile-shared jansson libsearpc ] 18 18 ++ lib.optional withShibboleth qtwebengine; 19 19
+2 -2
pkgs/applications/office/abiword/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, gtk3, fribidi 1 + { lib, stdenv, fetchurl, pkg-config, gtk3, fribidi 2 2 , libpng, popt, libgsf, enchant, wv, librsvg, bzip2, libjpeg, perl 3 3 , boost, libxslt, goffice, wrapGAppsHook, gnome3 4 4 }: ··· 28 28 substituteInPlace configure --replace 'enchant >=' 'enchant-2 >=' 29 29 ''; 30 30 31 - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 31 + nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 32 32 33 33 buildInputs = [ 34 34 gtk3 librsvg bzip2 fribidi libpng popt
+2 -2
pkgs/applications/office/aesop/default.nix
··· 1 - { lib, stdenv, vala, fetchFromGitHub, nix-update-script, pantheon, pkgconfig, meson, ninja, python3, gtk3 1 + { lib, stdenv, vala, fetchFromGitHub, nix-update-script, pantheon, pkg-config, meson, ninja, python3, gtk3 2 2 , desktop-file-utils, json-glib, libsoup, libgee, poppler, wrapGAppsHook, fetchpatch }: 3 3 4 4 stdenv.mkDerivation rec { ··· 16 16 desktop-file-utils 17 17 meson 18 18 ninja 19 - pkgconfig 19 + pkg-config 20 20 python3 21 21 vala 22 22 wrapGAppsHook
+2 -2
pkgs/applications/office/bookworm/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pantheon, vala, python3, python2, pkgconfig, libxml2, meson, ninja, gtk3, gnome3, glib, webkitgtk, libgee 1 + { lib, stdenv, fetchFromGitHub, pantheon, vala, python3, python2, pkg-config, libxml2, meson, ninja, gtk3, gnome3, glib, webkitgtk, libgee 2 2 , gobject-introspection, sqlite, poppler, poppler_utils, html2text, curl, gnugrep, coreutils, bash, unzip, unar, wrapGAppsHook 3 3 , appstream, desktop-file-utils }: 4 4 ··· 19 19 libxml2 20 20 meson 21 21 ninja 22 - pkgconfig 22 + pkg-config 23 23 python3 24 24 vala 25 25 wrapGAppsHook
+2 -2
pkgs/applications/office/elementary-planner/default.nix
··· 2 2 , fetchFromGitHub 3 3 , meson 4 4 , ninja 5 - , pkgconfig 5 + , pkg-config 6 6 , desktop-file-utils 7 7 , python3 8 8 , vala ··· 34 34 desktop-file-utils 35 35 meson 36 36 ninja 37 - pkgconfig 37 + pkg-config 38 38 python3 39 39 vala 40 40 wrapGAppsHook
+2 -2
pkgs/applications/office/envelope/default.nix
··· 4 4 , fetchpatch 5 5 , meson 6 6 , ninja 7 - , pkgconfig 7 + , pkg-config 8 8 , pantheon 9 9 , python3 10 10 , vala ··· 36 36 meson 37 37 ninja 38 38 vala 39 - pkgconfig 39 + pkg-config 40 40 python3 41 41 wrapGAppsHook 42 42 ];
+2 -2
pkgs/applications/office/espanso/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 3 , rustPlatform 4 - , pkgconfig 4 + , pkg-config 5 5 , extra-cmake-modules 6 6 , libX11 7 7 , libXi ··· 27 27 28 28 nativeBuildInputs = [ 29 29 extra-cmake-modules 30 - pkgconfig 30 + pkg-config 31 31 ]; 32 32 33 33 buildInputs = [
+2 -2
pkgs/applications/office/gnucash/default.nix
··· 1 - { fetchurl, lib, stdenv, pkgconfig, makeWrapper, cmake, gtest 1 + { fetchurl, lib, stdenv, pkg-config, makeWrapper, cmake, gtest 2 2 , boost, icu, libxml2, libxslt, gettext, swig, isocodes, gtk3, glibcLocales 3 3 , webkitgtk, dconf, hicolor-icon-theme, libofx, aqbanking, gwenhywfar, libdbi 4 4 , libdbiDrivers, guile, perl, perlPackages ··· 32 32 sha256 = "020k1mm909dcgs52ls4v7xx3yn8gqazi9awyr81l6y7pkq1spn2n"; 33 33 }; 34 34 35 - nativeBuildInputs = [ pkgconfig makeWrapper cmake gtest ]; 35 + nativeBuildInputs = [ pkg-config makeWrapper cmake gtest ]; 36 36 37 37 buildInputs = [ 38 38 boost icu libxml2 libxslt gettext swig isocodes gtk3 glibcLocales
+2 -2
pkgs/applications/office/grisbi/default.nix
··· 1 1 { fetchurl 2 2 , lib, stdenv 3 3 , gtk 4 - , pkgconfig 4 + , pkg-config 5 5 , libgsf 6 6 , libofx 7 7 , intltool ··· 19 19 sha256 = "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw"; 20 20 }; 21 21 22 - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 22 + nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 23 23 buildInputs = [ 24 24 gtk 25 25 libgsf
+2 -2
pkgs/applications/office/homebank/default.nix
··· 1 - { fetchurl, lib, stdenv, gtk, pkgconfig, libofx, intltool, wrapGAppsHook 1 + { fetchurl, lib, stdenv, gtk, pkg-config, libofx, intltool, wrapGAppsHook 2 2 , libsoup, gnome3 }: 3 3 4 4 stdenv.mkDerivation rec { ··· 8 8 sha256 = "02wd569viwy6ncy0144z9nxr3zmpl4shkqhz7zzwyky4gknxf8lj"; 9 9 }; 10 10 11 - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; 11 + nativeBuildInputs = [ pkg-config wrapGAppsHook ]; 12 12 buildInputs = [ gtk libofx intltool libsoup 13 13 gnome3.adwaita-icon-theme ]; 14 14
+3 -3
pkgs/applications/office/ktimetracker/default.nix
··· 1 - { mkDerivation, lib, fetchurl, cmake, pkgconfig, extra-cmake-modules, 1 + { mkDerivation, lib, fetchurl, cmake, pkg-config, extra-cmake-modules, 2 2 kconfig, kconfigwidgets, kdbusaddons, kdoctools, ki18n, kidletime, 3 3 kjobwidgets, kio, knotifications, kwindowsystem, kxmlgui, ktextwidgets, 4 4 kcalendarcore ··· 14 14 }; 15 15 16 16 nativeBuildInputs = [ 17 - cmake pkgconfig extra-cmake-modules 17 + cmake pkg-config extra-cmake-modules 18 18 ]; 19 19 20 20 buildInputs = [ 21 - kconfig kconfigwidgets kdbusaddons kdoctools ki18n kidletime kjobwidgets 21 + kconfig kconfigwidgets kdbusaddons kdoctools ki18n kidletime kjobwidgets 22 22 kio knotifications kwindowsystem kxmlgui ktextwidgets 23 23 kcalendarcore 24 24 ];
+3 -3
pkgs/applications/office/libreoffice/default.nix
··· 8 8 , autoconf, automake, openldap, bash, hunspell, librdf_redland, nss, nspr 9 9 , libwpg, dbus-glib, clucene_core, libcdr, lcms 10 10 , unixODBC, mdds, sane-backends, mythes, libexttextcat, libvisio 11 - , fontsConf, pkgconfig, bluez5, libtool, carlito 11 + , fontsConf, pkg-config, bluez5, libtool, carlito 12 12 , libatomic_ops, graphite2, harfbuzz, libodfgen, libzmf 13 13 , librevenge, libe-book, libmwaw, glm, gst_all_1 14 14 , gdb, commonsLogging, librdf_rasqal, wrapGAppsHook ··· 386 386 ''; 387 387 388 388 nativeBuildInputs = [ 389 - gdb fontforge autoconf automake bison pkgconfig libtool 389 + gdb fontforge autoconf automake bison pkg-config libtool 390 390 ] ++ lib.optional (!kdeIntegration) wrapGAppsHook 391 391 ++ lib.optional kdeIntegration wrapQtAppsHook; 392 392 ··· 399 399 libXaw libXext libXi libXinerama libxml2 libxslt libXtst 400 400 libXdmcp libpthreadstubs libGLU libGL mythes 401 401 glib libmysqlclient 402 - neon nspr nss openldap openssl pam perl pkgconfig poppler 402 + neon nspr nss openldap openssl pam perl pkg-config poppler 403 403 python3 sane-backends unzip which zip zlib 404 404 mdds bluez5 libcmis libwps libabw libzmf 405 405 libxshmfence libatomic_ops graphite2 harfbuzz gpgme util-linux
+2 -2
pkgs/applications/office/notes-up/default.nix
··· 2 2 , fetchFromGitHub 3 3 , nix-update-script 4 4 , pantheon 5 - , pkgconfig 5 + , pkg-config 6 6 , vala_0_46 7 7 , cmake 8 8 , ninja ··· 33 33 ninja 34 34 # fails with newer vala: https://github.com/Philip-Scott/Notes-up/issues/349 35 35 vala_0_46 36 - pkgconfig 36 + pkg-config 37 37 wrapGAppsHook 38 38 ]; 39 39
+2 -2
pkgs/applications/office/osmo/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, gtk3, libxml2, gettext, libical, libnotify 1 + { lib, stdenv, fetchurl, pkg-config, gtk3, libxml2, gettext, libical, libnotify 2 2 , libarchive, gspell, webkitgtk, libgringotts, wrapGAppsHook }: 3 3 4 4 stdenv.mkDerivation rec { ··· 10 10 sha256 = "19h3dnjgqbawnvgnycyp4n5b6mjsp5zghn3b69b6f3xa3fyi32qy"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkgconfig gettext wrapGAppsHook ]; 13 + nativeBuildInputs = [ pkg-config gettext wrapGAppsHook ]; 14 14 buildInputs = [ gtk3 libxml2 libical libnotify libarchive 15 15 gspell webkitgtk libgringotts ]; 16 16
+2 -2
pkgs/applications/office/pinpoint/default.nix
··· 1 - { fetchurl, lib, stdenv, pkgconfig, autoconf, automake, clutter, clutter-gst 1 + { fetchurl, lib, stdenv, pkg-config, autoconf, automake, clutter, clutter-gst 2 2 , gdk-pixbuf, cairo, clutter-gtk }: 3 3 4 4 stdenv.mkDerivation rec { ··· 8 8 url = "http://ftp.gnome.org/pub/GNOME/sources/pinpoint/0.1/${pname}-${version}.tar.xz"; 9 9 sha256 = "1jp8chr9vjlpb5lybwp5cg6g90ak5jdzz9baiqkbg0anlg8ps82s"; 10 10 }; 11 - nativeBuildInputs = [ pkgconfig ]; 11 + nativeBuildInputs = [ pkg-config ]; 12 12 buildInputs = [ autoconf automake clutter clutter-gst gdk-pixbuf 13 13 cairo clutter-gtk ]; 14 14
+2 -2
pkgs/applications/office/planner/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitLab 3 - , pkgconfig 3 + , pkg-config 4 4 , intltool 5 5 , automake111x 6 6 , autoconf ··· 25 25 }; 26 26 27 27 nativeBuildInputs = with gnome2; [ 28 - pkgconfig 28 + pkg-config 29 29 intltool 30 30 automake111x 31 31 autoconf
+2 -2
pkgs/applications/office/scribus/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, freetype, lcms, libtiff, libxml2 1 + { lib, stdenv, fetchurl, pkg-config, freetype, lcms, libtiff, libxml2 2 2 , libart_lgpl, qt4, python2, cups, fontconfig, libjpeg 3 3 , zlib, libpng, xorg, cairo, podofo, hunspell, boost, cmake, imagemagick, ghostscript }: 4 4 ··· 18 18 sha256 = "0bq433myw6h1siqlsakxv6ghb002rp3mfz5k12bg68s0k6skn992"; 19 19 }; 20 20 21 - nativeBuildInputs = [ pkgconfig cmake ]; 21 + nativeBuildInputs = [ pkg-config cmake ]; 22 22 buildInputs = with xorg; 23 23 [ freetype lcms libtiff libxml2 libart_lgpl qt4 24 24 pythonEnv cups fontconfig
+2 -2
pkgs/applications/office/scribus/unstable.nix
··· 14 14 , libxml2 15 15 , mkDerivation 16 16 , pixman 17 - , pkgconfig 17 + , pkg-config 18 18 , podofo 19 19 , poppler 20 20 , poppler_data ··· 45 45 46 46 nativeBuildInputs = [ 47 47 cmake 48 - pkgconfig 48 + pkg-config 49 49 ]; 50 50 51 51 buildInputs = [
+2 -2
pkgs/applications/office/spice-up/default.nix
··· 9 9 , gettext 10 10 , ninja 11 11 , pantheon 12 - , pkgconfig 12 + , pkg-config 13 13 , json-glib 14 14 , libgudev 15 15 , libevdev ··· 35 35 cmake 36 36 gettext 37 37 ninja 38 - pkgconfig 38 + pkg-config 39 39 vala 40 40 wrapGAppsHook 41 41 ];
+2 -2
pkgs/applications/office/timetable/default.nix
··· 8 8 , libgee 9 9 , meson 10 10 , ninja 11 - , pkgconfig 11 + , pkg-config 12 12 , pantheon 13 13 , python3 14 14 , wrapGAppsHook ··· 29 29 nativeBuildInputs = [ 30 30 meson 31 31 ninja 32 - pkgconfig 32 + pkg-config 33 33 vala 34 34 python3 35 35 wrapGAppsHook
+2 -2
pkgs/applications/office/tryton/default.nix
··· 1 1 { lib, stdenv 2 2 , python3Packages 3 - , pkgconfig 3 + , pkg-config 4 4 , librsvg 5 5 , gobject-introspection 6 6 , atk ··· 30 30 }; 31 31 32 32 nativeBuildInputs = [ 33 - pkgconfig 33 + pkg-config 34 34 gobject-introspection 35 35 wrapGAppsHook 36 36 ];
+2 -2
pkgs/applications/office/wordgrinder/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, makeWrapper 1 + { lib, stdenv, fetchFromGitHub, pkg-config, makeWrapper 2 2 , lua52Packages, libXft, ncurses, ninja, readline, zlib }: 3 3 4 4 stdenv.mkDerivation rec { ··· 28 28 dontConfigure = true; 29 29 30 30 nativeBuildInputs = [ 31 - pkgconfig 31 + pkg-config 32 32 makeWrapper 33 33 ninja 34 34 ];
+2 -2
pkgs/applications/radio/airspy/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub 2 - , cmake , pkgconfig, libusb1 2 + , cmake , pkg-config, libusb1 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 17 17 substituteInPlace airspy-tools/CMakeLists.txt --replace "/etc/udev/rules.d" "$out/etc/udev/rules.d" 18 18 ''; 19 19 20 - nativeBuildInputs = [ cmake pkgconfig ]; 20 + nativeBuildInputs = [ cmake pkg-config ]; 21 21 buildInputs = [ libusb1 ]; 22 22 23 23 cmakeFlags =
+2 -2
pkgs/applications/radio/cubicsdr/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, fftw, hamlib, libpulseaudio, libGL, libX11, liquid-dsp, 2 - pkgconfig, soapysdr-with-plugins, wxGTK31-gtk3, enableDigitalLab ? false }: 2 + pkg-config, soapysdr-with-plugins, wxGTK31-gtk3, enableDigitalLab ? false }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "cubicsdr"; ··· 29 29 }) 30 30 ]; 31 31 32 - nativeBuildInputs = [ cmake pkgconfig ]; 32 + nativeBuildInputs = [ cmake pkg-config ]; 33 33 34 34 buildInputs = [ fftw hamlib libpulseaudio libGL libX11 liquid-dsp soapysdr-with-plugins wxGTK31-gtk3 ]; 35 35
+2 -2
pkgs/applications/radio/dablin/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config 2 2 , mpg123, SDL2, gnome3, faad2, pcre 3 3 } : 4 4 ··· 13 13 sha256 = "0143jnhwwh4din6mlrkbm8m2wm8vnrlk0yk9r5qcvj70r2314bgq"; 14 14 }; 15 15 16 - nativeBuildInputs = [ cmake pkgconfig ]; 16 + nativeBuildInputs = [ cmake pkg-config ]; 17 17 18 18 buildInputs = [ faad2 mpg123 SDL2 gnome3.gtkmm pcre ]; 19 19
+2 -2
pkgs/applications/radio/dabtools/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config 2 2 , libusb1, rtl-sdr, fftw 3 3 } : 4 4 ··· 13 13 sha256 = "18nkdybgg2w6zh56g6xwmg49sifalvraz4rynw8w5d8cqi3dm9sm"; 14 14 }; 15 15 16 - nativeBuildInputs = [ cmake pkgconfig ]; 16 + nativeBuildInputs = [ cmake pkg-config ]; 17 17 buildInputs = [ rtl-sdr fftw libusb1 ]; 18 18 19 19 meta = with lib; {
+2 -2
pkgs/applications/radio/dump1090/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 - , pkgconfig 3 + , pkg-config 4 4 , libbladeRF 5 5 , libusb1 6 6 , ncurses ··· 18 18 sha256 = "1zacsqaqsiapljhzw31dwc4nld2rp98jm3ivkyznrhzk9n156p42"; 19 19 }; 20 20 21 - nativeBuildInputs = [ pkgconfig ]; 21 + nativeBuildInputs = [ pkg-config ]; 22 22 23 23 buildInputs = [ 24 24 libbladeRF
+2 -2
pkgs/applications/radio/fldigi/default.nix
··· 1 1 { lib, stdenv, fetchurl, hamlib, fltk14, libjpeg, libpng, portaudio, libsndfile, 2 - libsamplerate, libpulseaudio, libXinerama, gettext, pkgconfig, alsaLib }: 2 + libsamplerate, libpulseaudio, libXinerama, gettext, pkg-config, alsaLib }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 version = "4.1.17"; ··· 11 11 }; 12 12 13 13 buildInputs = [ libXinerama gettext hamlib fltk14 libjpeg libpng portaudio 14 - libsndfile libsamplerate libpulseaudio pkgconfig alsaLib ]; 14 + libsndfile libsamplerate libpulseaudio pkg-config alsaLib ]; 15 15 16 16 meta = { 17 17 description = "Digital modem program";
+2 -2
pkgs/applications/radio/fllog/default.nix
··· 3 3 , fetchurl 4 4 , fltk13 5 5 , libjpeg 6 - , pkgconfig 6 + , pkg-config 7 7 }: 8 8 9 9 stdenv.mkDerivation rec { ··· 21 21 ]; 22 22 23 23 nativeBuildInputs = [ 24 - pkgconfig 24 + pkg-config 25 25 ]; 26 26 27 27 meta = {
+2 -2
pkgs/applications/radio/flmsg/default.nix
··· 3 3 , fetchurl 4 4 , fltk13 5 5 , libjpeg 6 - , pkgconfig 6 + , pkg-config 7 7 }: 8 8 9 9 stdenv.mkDerivation rec { ··· 21 21 ]; 22 22 23 23 nativeBuildInputs = [ 24 - pkgconfig 24 + pkg-config 25 25 ]; 26 26 27 27 meta = {
+2 -2
pkgs/applications/radio/flrig/default.nix
··· 3 3 , fetchurl 4 4 , fltk13 5 5 , libjpeg 6 - , pkgconfig 6 + , pkg-config 7 7 }: 8 8 9 9 stdenv.mkDerivation rec { ··· 21 21 ]; 22 22 23 23 nativeBuildInputs = [ 24 - pkgconfig 24 + pkg-config 25 25 ]; 26 26 27 27 meta = {
+2 -2
pkgs/applications/radio/flwrap/default.nix
··· 3 3 , fetchurl 4 4 , fltk13 5 5 , libjpeg 6 - , pkgconfig 6 + , pkg-config 7 7 }: 8 8 9 9 stdenv.mkDerivation rec { ··· 21 21 ]; 22 22 23 23 nativeBuildInputs = [ 24 - pkgconfig 24 + pkg-config 25 25 ]; 26 26 27 27 meta = {
+2 -2
pkgs/applications/radio/gnuradio/3.7.nix
··· 4 4 , cmake 5 5 # Remove gcc and python references 6 6 , removeReferencesTo 7 - , pkgconfig 7 + , pkg-config 8 8 , cppunit 9 9 , swig 10 10 , orc ··· 53 53 basic = { 54 54 native = [ 55 55 cmake 56 - pkgconfig 56 + pkg-config 57 57 orc 58 58 ]; 59 59 runtime = [ boost log4cpp mpir ];
+2 -2
pkgs/applications/radio/gnuradio/default.nix
··· 4 4 , cmake 5 5 # Remove gcc and python references 6 6 , removeReferencesTo 7 - , pkgconfig 7 + , pkg-config 8 8 , cppunit 9 9 , swig 10 10 , orc ··· 53 53 basic = { 54 54 native = [ 55 55 cmake 56 - pkgconfig 56 + pkg-config 57 57 orc 58 58 ]; 59 59 runtime = [
+2 -2
pkgs/applications/radio/gnuradio/limesdr.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, boost, gnuradio 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, boost, gnuradio 2 2 , pythonSupport ? true, python, swig, limesuite, log4cpp 3 3 } : 4 4 ··· 20 20 21 21 nativeBuildInputs = [ 22 22 cmake 23 - pkgconfig 23 + pkg-config 24 24 ] ++ lib.optionals pythonSupport [ swig ]; 25 25 26 26 buildInputs = [
+2 -2
pkgs/applications/radio/hackrf/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, libusb1, fftwSinglePrec }: 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, fftwSinglePrec }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "hackrf"; ··· 13 13 14 14 nativeBuildInputs = [ 15 15 cmake 16 - pkgconfig 16 + pkg-config 17 17 ]; 18 18 19 19 buildInputs = [
+2 -2
pkgs/applications/radio/inspectrum/default.nix
··· 1 1 { lib 2 2 , mkDerivation 3 3 , fetchFromGitHub 4 - , pkgconfig 4 + , pkg-config 5 5 , cmake 6 6 , boost 7 7 , fftwFloat ··· 22 22 sha256 = "1x6nyn429pk0f7lqzskrgsbq09mq5787xd4piic95add6n1cc355"; 23 23 }; 24 24 25 - nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ]; 25 + nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; 26 26 buildInputs = [ 27 27 fftwFloat 28 28 boost
+2 -2
pkgs/applications/radio/kalibrate-hackrf/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fftw, hackrf, libusb1 }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fftw, hackrf, libusb1 }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "kalibrate-hackrf-unstable-20160827"; ··· 12 12 sha256 = "1jvn1qx7csgycxpx1k804sm9gk5a0c65z9gh8ybp9awq3pziv0nx"; 13 13 }; 14 14 15 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 16 16 17 17 buildInputs = [ fftw hackrf libusb1 ]; 18 18
+2 -2
pkgs/applications/radio/kalibrate-rtl/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, pkgconfig, fftw, rtl-sdr, libusb1 }: 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config, fftw, rtl-sdr, libusb1 }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "kalibrate-rtl-20131214"; ··· 11 11 sha256 = "1spbfflkqnw9s8317ppsf7b1nnkicqsmaqsnz1zf8i49ix70i6kn"; 12 12 }; 13 13 14 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 14 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 buildInputs = [ fftw rtl-sdr libusb1 ]; 16 16 17 17 meta = with lib; {
+2 -2
pkgs/applications/radio/minimodem/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, libtool 1 + { lib, stdenv, fetchFromGitHub, pkg-config, autoconf, automake, libtool 2 2 , fftw, fftwSinglePrec, alsaLib, libsndfile, libpulseaudio 3 3 }: 4 4 ··· 13 13 sha256 = "1b5xy36fjcp7vkp115dpx4mlmqg2fc7xvxdy648fb8im953bw7ql"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig autoconf automake libtool ]; 16 + nativeBuildInputs = [ pkg-config autoconf automake libtool ]; 17 17 buildInputs = [ fftw fftwSinglePrec alsaLib libsndfile libpulseaudio ]; 18 18 19 19 preConfigure = ''
+2 -2
pkgs/applications/radio/qsstv/default.nix
··· 1 - { mkDerivation, lib, stdenv, fetchurl, qtbase, qmake, openjpeg, pkgconfig, fftw, 1 + { mkDerivation, lib, stdenv, fetchurl, qtbase, qmake, openjpeg, pkg-config, fftw, 2 2 libpulseaudio, alsaLib, hamlib, libv4l, fftwFloat }: 3 3 4 4 mkDerivation rec { ··· 14 14 15 15 nativeBuildInputs = [ 16 16 qmake 17 - pkgconfig 17 + pkg-config 18 18 ]; 19 19 20 20 buildInputs = [ qtbase openjpeg fftw libpulseaudio alsaLib hamlib libv4l
+2 -2
pkgs/applications/radio/rtl-ais/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, libusb1, rtl-sdr }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, libusb1, rtl-sdr }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "rtl-ais"; 5 5 version = "0.8.1"; 6 - buildInputs = [ pkgconfig rtl-sdr libusb1 ]; 6 + buildInputs = [ pkg-config rtl-sdr libusb1 ]; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "dgiardini";
+2 -2
pkgs/applications/radio/rtl-sdr/default.nix
··· 1 - { lib, stdenv, fetchgit, fetchpatch, cmake, pkgconfig, libusb1 }: 1 + { lib, stdenv, fetchgit, fetchpatch, cmake, pkg-config, libusb1 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rtl-sdr"; ··· 16 16 sha256 = "0ns740s2rys4glq4la4bh0sxfv1mn61yfjns2yllhx70rsb2fqrn"; 17 17 }) ]; 18 18 19 - nativeBuildInputs = [ pkgconfig cmake ]; 19 + nativeBuildInputs = [ pkg-config cmake ]; 20 20 buildInputs = [ libusb1 ]; 21 21 22 22 # TODO: get these fixes upstream:
+2 -2
pkgs/applications/radio/rtl_433/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config 2 2 , libusb1, rtl-sdr, soapysdr-with-plugins 3 3 }: 4 4 ··· 13 13 sha256 = "093bxjxkg7yf78wqj5gpijbfa2p05ny09qqsj84kzi1svnzsa369"; 14 14 }; 15 15 16 - nativeBuildInputs = [ pkgconfig cmake ]; 16 + nativeBuildInputs = [ pkg-config cmake ]; 17 17 18 18 buildInputs = [ libusb1 rtl-sdr soapysdr-with-plugins ]; 19 19
+2 -2
pkgs/applications/radio/sdrangel/default.nix
··· 19 19 mkDerivation, 20 20 ocl-icd, 21 21 opencv3, 22 - pkgconfig, 22 + pkg-config, 23 23 qtbase, 24 24 qtmultimedia, 25 25 qtserialport, ··· 42 42 fetchSubmodules = false; 43 43 }; 44 44 45 - nativeBuildInputs = [ cmake pkgconfig ]; 45 + nativeBuildInputs = [ cmake pkg-config ]; 46 46 buildInputs = [ 47 47 glew opencv3 libusb1 boost libopus limesuite libav libiio libpulseaudio 48 48 qtbase qtwebsockets qtmultimedia rtl-sdr airspy hackrf
+2 -2
pkgs/applications/radio/soapybladerf/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config 2 2 , libbladeRF, soapysdr 3 3 } : 4 4 ··· 16 16 sha256 = "02wh09850vinqg248fw4lxmx7y857cqmnnb8jm9zhyrsggal0hki"; 17 17 }; 18 18 19 - nativeBuildInputs = [ cmake pkgconfig ]; 19 + nativeBuildInputs = [ cmake pkg-config ]; 20 20 buildInputs = [ libbladeRF soapysdr ]; 21 21 22 22 cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
+2 -2
pkgs/applications/radio/soapyhackrf/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config 2 2 , hackrf, soapysdr 3 3 } : 4 4 ··· 16 16 sha256 = "1awn89z462500gb3fjb7x61b1znkjri9n1d39bqfip1qk4s11pxc"; 17 17 }; 18 18 19 - nativeBuildInputs = [ cmake pkgconfig ]; 19 + nativeBuildInputs = [ cmake pkg-config ]; 20 20 buildInputs = [ hackrf soapysdr ]; 21 21 22 22 cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
+2 -2
pkgs/applications/radio/soapyrtlsdr/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config 2 2 , rtl-sdr, soapysdr 3 3 } : 4 4 ··· 16 16 sha256 = "15j0s7apbg9cjr6rcbr058kl0r3szwzf00ixcbykxb77fh7c6r9w"; 17 17 }; 18 18 19 - nativeBuildInputs = [ cmake pkgconfig ]; 19 + nativeBuildInputs = [ cmake pkg-config ]; 20 20 buildInputs = [ rtl-sdr soapysdr ]; 21 21 22 22 cmakeFlags = [ "-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/" ];
+2 -2
pkgs/applications/radio/soapysdr/default.nix
··· 1 1 { stdenv, lib, lndir, makeWrapper 2 2 , fetchFromGitHub, cmake 3 - , libusb-compat-0_1, pkgconfig 3 + , libusb-compat-0_1, pkg-config 4 4 , usePython ? false 5 5 , python, ncurses, swig2 6 6 , extraPackages ? [] ··· 24 24 sha256 = "102wnpjxrwba20pzdh1vvx0yg1h8vqd8z914idxflg9p14r6v5am"; 25 25 }; 26 26 27 - nativeBuildInputs = [ cmake makeWrapper pkgconfig ]; 27 + nativeBuildInputs = [ cmake makeWrapper pkg-config ]; 28 28 buildInputs = [ libusb-compat-0_1 ncurses ] 29 29 ++ lib.optionals usePython [ python swig2 ]; 30 30
+2 -2
pkgs/applications/radio/svxlink/default.nix
··· 1 - { lib, stdenv, cmake, pkgconfig, fetchFromGitHub, makeDesktopItem, alsaLib, speex 1 + { lib, stdenv, cmake, pkg-config, fetchFromGitHub, makeDesktopItem, alsaLib, speex 2 2 , libopus, curl, gsm, libgcrypt, libsigcxx, popt, qtbase, qttools 3 3 , wrapQtAppsHook, rtl-sdr, tcl, doxygen, groff }: 4 4 ··· 31 31 ]; 32 32 dontWrapQtApps = true; 33 33 34 - nativeBuildInputs = [ cmake pkgconfig doxygen groff wrapQtAppsHook ]; 34 + nativeBuildInputs = [ cmake pkg-config doxygen groff wrapQtAppsHook ]; 35 35 36 36 buildInputs = [ 37 37 alsaLib
+2 -2
pkgs/applications/radio/tlf/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf, automake, pkgconfig, glib 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf, automake, pkg-config, glib 2 2 , perl, ncurses5, hamlib, xmlrpc_c }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "1xpgs4k27pjd9mianfknknp6mf34365bcp96wrv5xh4dhph573rj"; 13 13 }; 14 14 15 - nativeBuildInputs = [ autoreconfHook autoconf automake pkgconfig perl ]; 15 + nativeBuildInputs = [ autoreconfHook autoconf automake pkg-config perl ]; 16 16 buildInputs = [ glib ncurses5 hamlib xmlrpc_c ]; 17 17 18 18 configureFlags = [ "--enable-hamlib" "--enable-fldigi-xmlrpc" ];
+2 -2
pkgs/applications/radio/uhd/default.nix
··· 2 2 , fetchurl 3 3 , fetchFromGitHub 4 4 , cmake 5 - , pkgconfig 5 + , pkg-config 6 6 # See https://files.ettus.com/manual_archive/v3.15.0.0/html/page_build_guide.html for dependencies explanations 7 7 , boost 8 8 , enableLibuhd_C_api ? true ··· 92 92 93 93 nativeBuildInputs = [ 94 94 cmake 95 - pkgconfig 95 + pkg-config 96 96 ] 97 97 # If both enableLibuhd_Python_api and enableUtils are off, we don't need 98 98 # pythonEnv in buildInputs as it's a 'build' dependency and not a runtime
+2 -2
pkgs/applications/radio/unixcw/default.nix
··· 1 - {lib, stdenv, fetchurl, libpulseaudio, alsaLib , pkgconfig, qt5}: 1 + {lib, stdenv, fetchurl, libpulseaudio, alsaLib , pkg-config, qt5}: 2 2 stdenv.mkDerivation rec { 3 3 pname = "unixcw"; 4 4 version = "3.5.1"; ··· 9 9 patches = [ 10 10 ./remove-use-of-dlopen.patch 11 11 ]; 12 - buildInputs = [libpulseaudio alsaLib pkgconfig qt5.qtbase]; 12 + buildInputs = [libpulseaudio alsaLib pkg-config qt5.qtbase]; 13 13 CFLAGS ="-lasound -lpulse-simple"; 14 14 15 15 meta = with lib; {
+2 -2
pkgs/applications/radio/welle-io/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig 1 + { mkDerivation, lib, fetchFromGitHub, cmake, pkg-config 2 2 , qtbase, qtcharts, qtmultimedia, qtquickcontrols, qtquickcontrols2, qtgraphicaleffects 3 3 , faad2, rtl-sdr, soapysdr-with-plugins, libusb-compat-0_1, fftwSinglePrec, lame, mpg123 }: 4 4 let ··· 17 17 sha256 = "04fpm6sc431dl9i5h53xpd6k85j22sv8aawl7b6wv2fzpfsd9fwa"; 18 18 }; 19 19 20 - nativeBuildInputs = [ cmake pkgconfig ]; 20 + nativeBuildInputs = [ cmake pkg-config ]; 21 21 22 22 buildInputs = [ 23 23 faad2
+1 -1
pkgs/applications/radio/wsjtx/default.nix
··· 13 13 }; 14 14 15 15 # Hamlib builds with autotools, wsjtx builds with cmake 16 - # Omitting pkgconfig because it causes issues locating the built hamlib 16 + # Omitting pkg-config because it causes issues locating the built hamlib 17 17 nativeBuildInputs = [ 18 18 asciidoc asciidoctor autoconf automake cmake docbook_xsl gfortran libtool 19 19 qttools texinfo wrapQtAppsHook
+2 -2
pkgs/applications/radio/xlog/default.nix
··· 1 - { lib, stdenv, fetchurl, glib, gtk2, pkgconfig, hamlib }: 1 + { lib, stdenv, fetchurl, glib, gtk2, pkg-config, hamlib }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "xlog"; 4 4 version = "2.0.19"; ··· 11 11 # glib-2.62 deprecations 12 12 NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS"; 13 13 14 - buildInputs = [ glib pkgconfig gtk2 hamlib ]; 14 + buildInputs = [ glib pkg-config gtk2 hamlib ]; 15 15 16 16 meta = with lib; { 17 17 description = "An amateur radio logging program";
+2 -2
pkgs/applications/video/avidemux/default.nix
··· 1 - { stdenv, lib, fetchurl, cmake, pkgconfig 1 + { stdenv, lib, fetchurl, cmake, pkg-config 2 2 , zlib, gettext, libvdpau, libva, libXv, sqlite 3 3 , yasm, freetype, fontconfig, fribidi 4 4 , makeWrapper, libXext, libGLU, qttools, qtbase, wrapQtAppsHook ··· 38 38 ]; 39 39 40 40 nativeBuildInputs = 41 - [ yasm cmake pkgconfig ] 41 + [ yasm cmake pkg-config ] 42 42 ++ lib.optional withQT wrapQtAppsHook; 43 43 buildInputs = [ 44 44 zlib gettext libvdpau libva libXv sqlite fribidi fontconfig
+2 -2
pkgs/applications/video/avxsynth/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config 2 2 , cairo, ffmpeg_3, ffms, libjpeg, log4cpp, pango 3 3 , avxeditSupport ? false, qt4 ? null 4 4 }: ··· 27 27 "--with-jpeg=${libjpeg.out}/lib" 28 28 ]; 29 29 30 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 30 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 31 31 32 32 buildInputs = [ cairo ffmpeg_3 ffms libjpeg log4cpp pango ] 33 33 ++ optional avxeditSupport qt4;
+2 -2
pkgs/applications/video/bino3d/default.nix
··· 1 - { mkDerivation, lib, fetchurl, pkgconfig, ffmpeg, glew, libass, openal, qtbase }: 1 + { mkDerivation, lib, fetchurl, pkg-config, ffmpeg, glew, libass, openal, qtbase }: 2 2 3 3 mkDerivation rec { 4 4 pname = "bino"; ··· 9 9 sha256 = "04yl7ibnhajlli4a5x77az8jxbzw6b2wjay8aa6px551nmiszn9k"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 14 14 buildInputs = [ ffmpeg glew libass openal qtbase ]; 15 15
+2 -2
pkgs/applications/video/bombono/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 - , pkgconfig 3 + , pkg-config 4 4 , fetchpatch 5 5 , scons 6 6 , boost ··· 52 52 {name="fix_ffmpeg30.patch"; sha256="sha256-vKEbvbjYVRzEaVYC8XOJBPmk6FDXI/WA0X/dldRRO8c=";} 53 53 ]); 54 54 55 - nativeBuildInputs = [ wrapGAppsHook scons pkgconfig gettext ]; 55 + nativeBuildInputs = [ wrapGAppsHook scons pkg-config gettext ]; 56 56 57 57 buildInputs = [ 58 58 boost
+2 -2
pkgs/applications/video/byzanz/default.nix
··· 1 - { lib, stdenv, fetchgit, wrapGAppsHook, which, gnome3, glib, intltool, pkgconfig, libtool, cairo, gtk3, gst_all_1, xorg }: 1 + { lib, stdenv, fetchgit, wrapGAppsHook, which, gnome3, glib, intltool, pkg-config, libtool, cairo, gtk3, gst_all_1, xorg }: 2 2 3 3 stdenv.mkDerivation { 4 4 version = "0.2.3.alpha"; ··· 18 18 19 19 NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 20 20 21 - nativeBuildInputs = [ pkgconfig ]; 21 + nativeBuildInputs = [ pkg-config ]; 22 22 buildInputs = [ which gnome3.gnome-common glib intltool libtool cairo gtk3 xorg.xwininfo ] 23 23 ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-bad gst-plugins-good gst-plugins-ugly gst-libav wrapGAppsHook ]); 24 24
+2 -2
pkgs/applications/video/ccextractor/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, cmake 1 + { lib, stdenv, fetchFromGitHub, pkg-config, cmake 2 2 , glew, glfw3, leptonica, libiconv, tesseract3, zlib }: 3 3 4 4 with lib; ··· 15 15 16 16 sourceRoot = "source/src"; 17 17 18 - nativeBuildInputs = [ pkgconfig cmake ]; 18 + nativeBuildInputs = [ pkg-config cmake ]; 19 19 20 20 buildInputs = [ glew glfw3 leptonica tesseract3 zlib ] ++ lib.optional (!stdenv.isLinux) libiconv; 21 21
+2 -2
pkgs/applications/video/celluloid/default.nix
··· 5 5 , ninja 6 6 , python3 7 7 , gettext 8 - , pkgconfig 8 + , pkg-config 9 9 , desktop-file-utils 10 10 , wrapGAppsHook 11 11 , appstream-glib ··· 32 32 python3 33 33 appstream-glib 34 34 gettext 35 - pkgconfig 35 + pkg-config 36 36 desktop-file-utils 37 37 wrapGAppsHook 38 38 ];
+2 -2
pkgs/applications/video/cinelerra/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool 2 - , pkgconfig, faad2, faac, a52dec, alsaLib, fftw, lame, libavc1394 2 + , pkg-config, faad2, faac, a52dec, alsaLib, fftw, lame, libavc1394 3 3 , libiec61883, libraw1394, libsndfile, libvorbis, libogg, libjpeg 4 4 , libtiff, freetype, mjpegtools, x264, gettext, openexr 5 5 , libXext, libXxf86vm, libXv, libXi, libX11, libXft, xorgproto, libtheora, libpng ··· 30 30 31 31 buildInputs = 32 32 [ automake 33 - autoconf libtool pkgconfig file 33 + autoconf libtool pkg-config file 34 34 faad2 faac 35 35 a52dec alsaLib fftw lame libavc1394 libiec61883 36 36 libraw1394 libsndfile libvorbis libogg libjpeg libtiff freetype
+2 -2
pkgs/applications/video/coriander/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, glib, gtk2, libgnomeui, libXv, libraw1394, libdc1394 1 + { lib, stdenv, fetchurl, pkg-config, glib, gtk2, libgnomeui, libXv, libraw1394, libdc1394 2 2 , SDL, automake, GConf }: 3 3 4 4 stdenv.mkDerivation { ··· 13 13 cp ${automake}/share/automake-*/mkinstalldirs . 14 14 ''; 15 15 16 - nativeBuildInputs = [ pkgconfig ]; 16 + nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ glib gtk2 libgnomeui libXv libraw1394 libdc1394 SDL GConf ]; 18 18 19 19 meta = {
+2 -2
pkgs/applications/video/dvdauthor/default.nix
··· 1 - { lib, stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkgconfig 1 + { lib, stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkg-config 2 2 , flex, bison }: 3 3 4 4 stdenv.mkDerivation rec { ··· 10 10 }; 11 11 12 12 buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick flex bison]; 13 - nativeBuildInputs = [ pkgconfig ]; 13 + nativeBuildInputs = [ pkg-config ]; 14 14 15 15 patches = [ 16 16 ./dvdauthor-0.7.1-automake-1.13.patch
+2 -2
pkgs/applications/video/dvdstyler/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig 1 + { lib, stdenv, fetchurl, pkg-config 2 2 , flex, bison, gettext 3 3 , xineUI, wxSVG 4 4 , fontconfig ··· 23 23 }; 24 24 25 25 nativeBuildInputs = 26 - [ pkgconfig ]; 26 + [ pkg-config ]; 27 27 28 28 packagesToBinPath = 29 29 [ cdrtools dvdauthor dvdplusrwtools ];
+2 -2
pkgs/applications/video/gnome-mplayer/default.nix
··· 1 - {lib, stdenv, substituteAll, fetchFromGitHub, pkgconfig, gettext, glib, gtk3, gmtk, dbus, dbus-glib 1 + {lib, stdenv, substituteAll, fetchFromGitHub, pkg-config, gettext, glib, gtk3, gmtk, dbus, dbus-glib 2 2 , libnotify, libpulseaudio, mplayer, wrapGAppsHook }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "0qvy9fllvg1mad6y1j79iaqa6khs0q2cb0z62yfg4srbr07fi8xr"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkgconfig gettext wrapGAppsHook ]; 15 + nativeBuildInputs = [ pkg-config gettext wrapGAppsHook ]; 16 16 buildInputs = [ glib gtk3 gmtk dbus dbus-glib libnotify libpulseaudio ]; 17 17 18 18 patches = [
+2 -2
pkgs/applications/video/gpac/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, zlib }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "1.0.1"; ··· 17 17 18 18 # this is the bare minimum configuration, as I'm only interested in MP4Box 19 19 # For most other functionality, this should probably be extended 20 - nativeBuildInputs = [ pkgconfig ]; 20 + nativeBuildInputs = [ pkg-config ]; 21 21 22 22 buildInputs = [ zlib ]; 23 23
+2 -2
pkgs/applications/video/handbrake/default.nix
··· 9 9 10 10 { stdenv, lib, fetchFromGitHub, 11 11 # Main build tools 12 - pkgconfig, autoconf, automake, libtool, m4, lzma, python3, 12 + pkg-config, autoconf, automake, libtool, m4, lzma, python3, 13 13 numactl, 14 14 # Processing, video codecs, containers 15 15 ffmpeg-full, nv-codec-headers, libogg, x264, x265, libvpx, libtheora, dav1d, ··· 93 93 ''); 94 94 95 95 nativeBuildInputs = [ 96 - pkgconfig autoconf automake libtool m4 python3 96 + pkg-config autoconf automake libtool m4 python3 97 97 ] ++ lib.optionals useGtk [ intltool wrapGAppsHook ]; 98 98 99 99 buildInputs = [
+2 -2
pkgs/applications/video/kino/default.nix
··· 51 51 #AMR-WB IF2 support no 52 52 53 53 { lib, stdenv, fetchurl, gtk2, libglade, libxml2, libraw1394, libsamplerate, libdv 54 - , pkgconfig, perlPackages, libavc1394, libiec61883, libXv, gettext 54 + , pkg-config, perlPackages, libavc1394, libiec61883, libXv, gettext 55 55 , libX11, glib, cairo, intltool, ffmpeg, libv4l 56 56 }: 57 57 ··· 64 64 }; 65 65 66 66 buildInputs = [ gtk2 libglade libxml2 libraw1394 libsamplerate libdv 67 - pkgconfig libavc1394 libiec61883 intltool libXv gettext libX11 glib cairo ffmpeg libv4l ] # TODOoptional packages 67 + pkg-config libavc1394 libiec61883 intltool libXv gettext libX11 glib cairo ffmpeg libv4l ] # TODOoptional packages 68 68 ++ (with perlPackages; [ perl XMLParser ]); 69 69 70 70 configureFlags = [ "--enable-local-ffmpeg=no" ];
+7 -7
pkgs/applications/video/kodi/default.nix
··· 1 1 { stdenv, lib, fetchpatch, fetchurl, fetchFromGitHub, autoconf, automake, libtool, makeWrapper, linuxHeaders 2 - , pkgconfig, cmake, gnumake, yasm, python2Packages 2 + , pkg-config, cmake, gnumake, yasm, python2Packages 3 3 , libgcrypt, libgpgerror, libunistring 4 4 , boost, avahi, lame, autoreconfHook 5 5 , gettext, pcre-cpp, yajl, fribidi, which ··· 99 99 "-DCROSSCOMPILING=ON" 100 100 "-DCPU=${stdenv.hostPlatform.parsed.cpu.name}" 101 101 "-DOS=${stdenv.hostPlatform.parsed.kernel.name}" 102 - "-DPKG_CONFIG_EXECUTABLE=pkgconfig" 102 + "-DPKG_CONFIG_EXECUTABLE=pkg-config" 103 103 ]; 104 104 buildInputs = [ libidn libtasn1 p11-kit zlib libva ] 105 105 ++ lib.optional vdpauSupport libvdpau; 106 - nativeBuildInputs = [ cmake nasm pkgconfig gnutls ]; 106 + nativeBuildInputs = [ cmake nasm pkg-config gnutls ]; 107 107 }; 108 108 109 109 # We can build these externally but FindLibDvd.cmake forces us to build it ··· 114 114 rev = "${version}-${rel}-Beta-5"; 115 115 sha256 = "0j41ydzx0imaix069s3z07xqw9q95k7llh06fc27dcn6f7b8ydyl"; 116 116 buildInputs = [ linuxHeaders ]; 117 - nativeBuildInputs = [ cmake pkgconfig ]; 117 + nativeBuildInputs = [ cmake pkg-config ]; 118 118 postPatch = '' 119 119 rm -rf msvc 120 120 ··· 133 133 rev = "${version}-${rel}-Alpha-3"; 134 134 sha256 = "0qwlf4lgahxqxk1r2pzl866mi03pbp7l1fc0rk522sc0ak2s9jhb"; 135 135 buildInputs = [ libdvdcss libdvdread ]; 136 - nativeBuildInputs = [ cmake pkgconfig ]; 136 + nativeBuildInputs = [ cmake pkg-config ]; 137 137 postPatch = cmakeProtoPatch; 138 138 postInstall = '' 139 139 mv $out/lib/liblibdvdnav.so $out/lib/libdvdnav.so ··· 146 146 rev = "${version}-${rel}-Alpha-3"; 147 147 sha256 = "1xxn01mhkdnp10cqdr357wx77vyzfb5glqpqyg8m0skyi75aii59"; 148 148 buildInputs = [ libdvdcss ]; 149 - nativeBuildInputs = [ cmake pkgconfig ]; 149 + nativeBuildInputs = [ cmake pkg-config ]; 150 150 configureFlags = [ "--with-libdvdcss" ]; 151 151 postPatch = cmakeProtoPatch; 152 152 }; ··· 208 208 doxygen 209 209 makeWrapper 210 210 which 211 - pkgconfig gnumake 211 + pkg-config gnumake 212 212 autoconf automake libtool # still needed for some components. Check if that is the case with 19.0 213 213 jre_headless yasm gettext python2Packages.python flatbuffers 214 214
+2 -2
pkgs/applications/video/linuxstopmotion/default.nix
··· 1 - { mkDerivation, lib, fetchgit, pkgconfig, qmake, qtbase, qttools, qtmultimedia, libvorbis, libtar, libxml2 }: 1 + { mkDerivation, lib, fetchgit, pkg-config, qmake, qtbase, qttools, qtmultimedia, libvorbis, libtar, libxml2 }: 2 2 3 3 mkDerivation rec { 4 4 version = "0.8.5"; ··· 10 10 sha256 = "1612lkwsfzc59wvdj2zbj5cwsyw66bwn31jrzjrxvygxdh4ab069"; 11 11 }; 12 12 13 - nativeBuildInputs = [ qmake pkgconfig ]; 13 + nativeBuildInputs = [ qmake pkg-config ]; 14 14 buildInputs = [ qtbase qttools qtmultimedia libvorbis libtar libxml2 ]; 15 15 16 16 postPatch = ''
+2 -2
pkgs/applications/video/mapmap/default.nix
··· 6 6 , liblo 7 7 , gst_all_1 8 8 , qmake 9 - , pkgconfig 9 + , pkg-config 10 10 , wrapQtAppsHook 11 11 }: 12 12 ··· 26 26 27 27 nativeBuildInputs = [ 28 28 qmake 29 - pkgconfig 29 + pkg-config 30 30 wrapQtAppsHook 31 31 ]; 32 32
+2 -2
pkgs/applications/video/mkvtoolnix/default.nix
··· 1 - { lib, stdenv, fetchFromGitLab, pkgconfig, autoconf, automake, libiconv, drake 1 + { lib, stdenv, fetchFromGitLab, pkg-config, autoconf, automake, libiconv, drake 2 2 , ruby, docbook_xsl, file, xdg_utils, gettext, expat, boost, libebml, zlib 3 3 , fmt, libmatroska, libogg, libvorbis, flac, libxslt, cmark, pcre2 4 4 , withGUI ? true ··· 23 23 }; 24 24 25 25 nativeBuildInputs = [ 26 - pkgconfig autoconf automake gettext 26 + pkg-config autoconf automake gettext 27 27 drake ruby docbook_xsl libxslt 28 28 ]; 29 29
+2 -2
pkgs/applications/video/motion/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config 2 2 , ffmpeg, libjpeg, libmicrohttpd }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 sha256 = "09xs815jsivcilpmnrx2jkcxirj4lg5kp99fkr0p2sdxw03myi95"; 13 13 }; 14 14 15 - nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 16 16 17 17 buildInputs = [ ffmpeg libjpeg libmicrohttpd ]; 18 18
+2 -2
pkgs/applications/video/mplayer/default.nix
··· 1 - { config, lib, stdenv, fetchurl, pkgconfig, freetype, yasm, ffmpeg_3 1 + { config, lib, stdenv, fetchurl, pkg-config, freetype, yasm, ffmpeg_3 2 2 , aalibSupport ? true, aalib ? null 3 3 , fontconfigSupport ? true, fontconfig ? null, freefont_ttf ? null 4 4 , fribidiSupport ? true, fribidi ? null ··· 107 107 ''; 108 108 109 109 depsBuildBuild = [ buildPackages.stdenv.cc ]; 110 - nativeBuildInputs = [ pkgconfig yasm ]; 110 + nativeBuildInputs = [ pkg-config yasm ]; 111 111 buildInputs = with lib; 112 112 [ freetype ffmpeg_3 ] 113 113 ++ optional aalibSupport aalib
+2 -2
pkgs/applications/video/mpv/default.nix
··· 1 1 { config, lib, stdenv, fetchFromGitHub, fetchpatch 2 - , addOpenGLRunpath, docutils, perl, pkgconfig, python3, wafHook, which 2 + , addOpenGLRunpath, docutils, perl, pkg-config, python3, wafHook, which 3 3 , ffmpeg, freefont_ttf, freetype, libass, libpthreadstubs, mujs 4 4 , nv-codec-headers, lua, libuchardet, libiconv ? null 5 5 , CoreFoundation, Cocoa, CoreAudio, MediaPlayer ··· 152 152 ++ lib.optional (!swiftSupport) "--disable-macos-cocoa-cb"; 153 153 154 154 nativeBuildInputs = [ 155 - addOpenGLRunpath docutils perl pkgconfig python3 wafHook which 155 + addOpenGLRunpath docutils perl pkg-config python3 wafHook which 156 156 ] 157 157 ++ optional swiftSupport swift; 158 158
+2 -2
pkgs/applications/video/mpv/scripts/mpris.nix
··· 1 - { lib, stdenv, fetchpatch, fetchFromGitHub, pkgconfig, glib, mpv-unwrapped }: 1 + { lib, stdenv, fetchpatch, fetchFromGitHub, pkg-config, glib, mpv-unwrapped }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mpv-mpris"; ··· 18 18 }) 19 19 ]; 20 20 21 - nativeBuildInputs = [ pkgconfig ]; 21 + nativeBuildInputs = [ pkg-config ]; 22 22 23 23 buildInputs = [ glib mpv-unwrapped ]; 24 24
+3 -3
pkgs/applications/video/mythtv/default.nix
··· 1 1 { lib, stdenv, mkDerivation, fetchFromGitHub, which, qtbase, qtwebkit, qtscript, xlibsWrapper 2 2 , libpulseaudio, fftwSinglePrec , lame, zlib, libGLU, libGL, alsaLib, freetype 3 - , perl, pkgconfig , libsamplerate, libbluray, lzo, libX11, libXv, libXrandr, libXvMC, libXinerama, libXxf86vm 3 + , perl, pkg-config , libsamplerate, libbluray, lzo, libX11, libXv, libXrandr, libXvMC, libXinerama, libXxf86vm 4 4 , libXmu , yasm, libuuid, taglib, libtool, autoconf, automake, file, exiv2, linuxHeaders 5 5 }: 6 6 ··· 27 27 perl libsamplerate libbluray lzo alsaLib libpulseaudio fftwSinglePrec libX11 libXv libXrandr libXvMC 28 28 libXmu libXinerama libXxf86vm libXmu libuuid taglib exiv2 29 29 ]; 30 - nativeBuildInputs = [ pkgconfig which yasm libtool autoconf automake file ]; 30 + nativeBuildInputs = [ pkg-config which yasm libtool autoconf automake file ]; 31 31 32 - configureFlags = 32 + configureFlags = 33 33 [ "--dvb-path=${linuxHeaders}/include" ]; 34 34 35 35 meta = with lib; {
+4 -4
pkgs/applications/video/natron/default.nix
··· 1 - { lib, stdenv, fetchurl, qt4, pkgconfig, boost, expat, cairo, python2Packages, 1 + { lib, stdenv, fetchurl, qt4, pkg-config, boost, expat, cairo, python2Packages, 2 2 cmake, flex, bison, pango, librsvg, librevenge, libxml2, libcdr, libzip, 3 3 poppler, imagemagick, openexr, ffmpeg_3, opencolorio, openimageio, 4 4 qmake4Hook, libpng, libGL, lndir }: ··· 50 50 ({ 51 51 pluginName = "arena"; 52 52 sha256 = "0qba13vn9qdfax7nqlz1ps27zspr5kh795jp1xvbmwjzjzjpkqkf"; 53 - nativeBuildInputs = [ pkgconfig ]; 53 + nativeBuildInputs = [ pkg-config ]; 54 54 buildInputs = [ 55 55 pango librsvg librevenge libcdr opencolorio libxml2 libzip 56 56 poppler imagemagick ··· 66 66 ({ 67 67 pluginName = "io"; 68 68 sha256 = "0s196i9fkgr9iw92c94mxgs1lkxbhynkf83vmsgrldflmf0xjky7"; 69 - nativeBuildInputs = [ pkgconfig ]; 69 + nativeBuildInputs = [ pkg-config ]; 70 70 buildInputs = [ 71 71 libpng ffmpeg_3 openexr opencolorio openimageio boost libGL 72 72 seexpr ··· 93 93 sha256 = "1wdc0zqriw2jhlrhzs6af3kagrv22cm086ffnbr1x43mgc9hfhjp"; 94 94 }; 95 95 96 - nativeBuildInputs = [ qmake4Hook pkgconfig python2Packages.wrapPython ]; 96 + nativeBuildInputs = [ qmake4Hook pkg-config python2Packages.wrapPython ]; 97 97 98 98 buildInputs = [ 99 99 qt4 boost expat cairo python2Packages.pyside python2Packages.pysideShiboken
+2 -2
pkgs/applications/video/obs-studio/default.nix
··· 19 19 , curl 20 20 , xorg 21 21 , makeWrapper 22 - , pkgconfig 22 + , pkg-config 23 23 , libvlc 24 24 , mbedtls 25 25 ··· 50 50 fetchSubmodules = true; 51 51 }; 52 52 53 - nativeBuildInputs = [ addOpenGLRunpath cmake pkgconfig ]; 53 + nativeBuildInputs = [ addOpenGLRunpath cmake pkg-config ]; 54 54 55 55 buildInputs = [ 56 56 curl
+2 -2
pkgs/applications/video/obs-studio/wlrobs.nix
··· 6 6 # mkdir -p ~/.config/obs-studio/plugins/wlrobs/bin/64bit 7 7 # ln -s ~/.nix-profile/share/obs/obs-plugins/wlrobs/bin/64bit/libwlrobs.so ~/.config/obs-studio/plugins/wlrobs/bin/64bit 8 8 { stdenv, fetchhg, wayland, obs-studio 9 - , meson, ninja, pkgconfig, libX11 9 + , meson, ninja, pkg-config, libX11 10 10 , dmabufSupport ? false, libdrm ? null, libGL ? null, lib}: 11 11 12 12 assert dmabufSupport -> libdrm != null && libGL != null; ··· 21 21 sha256 = "0qrcf8024r4ynfjw0zx8vn59ygx9q5rb196s6nyxmy3gkv2lfxlq"; 22 22 }; 23 23 24 - buildInputs = [ libX11 libGL libdrm meson ninja pkgconfig wayland obs-studio ]; 24 + buildInputs = [ libX11 libGL libdrm meson ninja pkg-config wayland obs-studio ]; 25 25 26 26 installPhase = '' 27 27 mkdir -p $out/share/obs/obs-plugins/wlrobs/bin/64bit
+2 -2
pkgs/applications/video/olive-editor/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, which, qmake, mkDerivation, 1 + { lib, stdenv, fetchFromGitHub, pkg-config, which, qmake, mkDerivation, 2 2 qtmultimedia, wrapQtAppsHook, frei0r, opencolorio, ffmpeg-full, 3 3 CoreFoundation }: 4 4 ··· 14 14 }; 15 15 16 16 nativeBuildInputs = [ 17 - pkgconfig 17 + pkg-config 18 18 which 19 19 qmake 20 20 wrapQtAppsHook
+2 -2
pkgs/applications/video/openshot-qt/libopenshot-audio.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkgconfig, cmake, doxygen 1 + { lib, stdenv, fetchFromGitHub, pkg-config, cmake, doxygen 2 2 , alsaLib, libX11, libXft, libXrandr, libXinerama, libXext, libXcursor 3 3 , zlib, AGL, Cocoa, Foundation 4 4 }: ··· 16 16 }; 17 17 18 18 nativeBuildInputs = 19 - [ pkgconfig cmake doxygen ]; 19 + [ pkg-config cmake doxygen ]; 20 20 21 21 buildInputs = 22 22 optionals stdenv.isLinux [ alsaLib ]
+2 -2
pkgs/applications/video/openshot-qt/libopenshot.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchpatch 2 - , pkgconfig, cmake, doxygen 2 + , pkg-config, cmake, doxygen 3 3 , libopenshot-audio, imagemagick, ffmpeg_3 4 4 , swig, python3 5 5 , unittest-cpp, cppzmq, zeromq ··· 33 33 export _REL_PYTHON_MODULE_PATH=$(toPythonPath $out) 34 34 ''; 35 35 36 - nativeBuildInputs = [ pkgconfig cmake doxygen ]; 36 + nativeBuildInputs = [ pkg-config cmake doxygen ]; 37 37 38 38 buildInputs = 39 39 [ imagemagick ffmpeg_3 swig python3 unittest-cpp
+2 -2
pkgs/applications/video/p2pvc/default.nix
··· 1 - { lib, stdenv, pkgconfig, fetchFromGitHub, opencv2, ncurses, portaudio }: 1 + { lib, stdenv, pkg-config, fetchFromGitHub, opencv2, ncurses, portaudio }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "p2pvc"; 5 5 6 - nativeBuildInputs = [ pkgconfig ]; 6 + nativeBuildInputs = [ pkg-config ]; 7 7 buildInputs = [ opencv2 ncurses portaudio ]; 8 8 9 9 enableParallelBuilding = true;
+2 -2
pkgs/applications/video/peek/default.nix
··· 6 6 , gettext 7 7 , desktop-file-utils 8 8 , appstream-glib 9 - , pkgconfig 9 + , pkg-config 10 10 , txt2man 11 11 , gzip 12 12 , vala ··· 43 43 meson 44 44 ninja 45 45 libxml2 46 - pkgconfig 46 + pkg-config 47 47 txt2man 48 48 python3 49 49 vala
+2 -2
pkgs/applications/video/plex-media-player/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, pkgconfig, cmake, python3, mkDerivation 1 + { lib, stdenv, fetchFromGitHub, fetchurl, pkg-config, cmake, python3, mkDerivation 2 2 , libX11, libXrandr, qtbase, qtwebchannel, qtwebengine, qtx11extras 3 3 , libvdpau, SDL2, mpv, libGL }: 4 4 let ··· 21 21 sha256 = "XFwcSHn9wG30bDMGFITBmhp6/VI1RLmxMxFFxjntTmw="; 22 22 }; 23 23 24 - nativeBuildInputs = [ pkgconfig cmake python3 ]; 24 + nativeBuildInputs = [ pkg-config cmake python3 ]; 25 25 buildInputs = [ libX11 libXrandr qtbase qtwebchannel qtwebengine qtx11extras 26 26 libvdpau SDL2 mpv libGL ]; 27 27
+2 -2
pkgs/applications/video/qmediathekview/default.nix
··· 1 - { mkDerivation, lib, stdenv, fetchFromGitHub, qtbase, qttools, xz, boost, qmake, pkgconfig }: 1 + { mkDerivation, lib, stdenv, fetchFromGitHub, qtbase, qttools, xz, boost, qmake, pkg-config }: 2 2 3 3 mkDerivation rec { 4 4 pname = "QMediathekView"; ··· 18 18 19 19 buildInputs = [ qtbase qttools xz boost ]; 20 20 21 - nativeBuildInputs = [ qmake pkgconfig ]; 21 + nativeBuildInputs = [ qmake pkg-config ]; 22 22 23 23 installFlags = [ "INSTALL_ROOT=$(out)" ]; 24 24
+2 -2
pkgs/applications/video/qstopmotion/default.nix
··· 12 12 , ninja 13 13 , libxml2 14 14 , gettext 15 - , pkgconfig 15 + , pkg-config 16 16 , libgphoto2 17 17 , gphoto2 18 18 , v4l-utils ··· 46 46 ]; 47 47 48 48 nativeBuildInputs = [ 49 - pkgconfig 49 + pkg-config 50 50 cmake 51 51 extra-cmake-modules 52 52 ninja
+2 -2
pkgs/applications/video/quvi/library.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts, libproxy, libgcrypt, glib }: 1 + { lib, stdenv, fetchurl, pkg-config, lua5, curl, quvi_scripts, libproxy, libgcrypt, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libquvi"; ··· 9 9 sha256 = "1cl1kbgxl1jnx2nwx4z90l0lap09lnnj1fg7hxsxk3m6aj4y4grd"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ lua5 curl quvi_scripts libproxy libgcrypt glib ]; 14 14 15 15 meta = {
+2 -2
pkgs/applications/video/quvi/scripts.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig}: 1 + {lib, stdenv, fetchurl, pkg-config}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "quvi-scripts"; ··· 9 9 sha256 = "1qvp6z5k1qgcys7vf7jd6fm0g07xixmciwj14ypn1kqhmjgizwhp"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 14 14 meta = { 15 15 description = "Web video downloader";
+2 -2
pkgs/applications/video/quvi/tool.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts, libquvi, lua5_sockets, glib, makeWrapper}: 1 + {lib, stdenv, fetchurl, pkg-config, lua5, curl, quvi_scripts, libquvi, lua5_sockets, glib, makeWrapper}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "quvi"; ··· 9 9 sha256 = "1h52s265rp3af16dvq1xlscp2926jqap2l4ah94vrfchv6m1hffb"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig ]; 12 + nativeBuildInputs = [ pkg-config ]; 13 13 buildInputs = [ lua5 curl quvi_scripts libquvi glib makeWrapper ]; 14 14 postInstall = '' 15 15 wrapProgram $out/bin/quvi --set LUA_PATH "${lua5_sockets}/share/lua/${lua5.luaversion}/?.lua"
+2 -2
pkgs/applications/video/shotcut/default.nix
··· 8 8 , gettext 9 9 , mlt 10 10 , jack1 11 - , pkgconfig 11 + , pkg-config 12 12 , qtbase 13 13 , qtmultimedia 14 14 , qtx11extras ··· 35 35 }; 36 36 37 37 enableParallelBuilding = true; 38 - nativeBuildInputs = [ pkgconfig qmake ]; 38 + nativeBuildInputs = [ pkg-config qmake ]; 39 39 buildInputs = [ 40 40 SDL2 41 41 frei0r
+2 -2
pkgs/applications/video/simplescreenrecorder/default.nix
··· 1 1 { lib, stdenv, mkDerivation, fetchurl, alsaLib, ffmpeg_3, libjack2, libX11, libXext, qtx11extras 2 - , libXfixes, libGLU, libGL, pkgconfig, libpulseaudio, qtbase, cmake, ninja 2 + , libXfixes, libGLU, libGL, pkg-config, libpulseaudio, qtbase, cmake, ninja 3 3 }: 4 4 5 5 mkDerivation rec { ··· 23 23 done 24 24 ''; 25 25 26 - nativeBuildInputs = [ pkgconfig cmake ninja ]; 26 + nativeBuildInputs = [ pkg-config cmake ninja ]; 27 27 buildInputs = [ 28 28 alsaLib ffmpeg_3 libjack2 libX11 libXext libXfixes libGLU libGL 29 29 libpulseaudio qtbase qtx11extras
+2 -2
pkgs/applications/video/subtitleeditor/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, intltool, file, 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, intltool, file, 2 2 desktop-file-utils, enchant, gtk3, gtkmm3, gst_all_1, hicolor-icon-theme, 3 3 libsigcxx, libxmlxx, xdg_utils, isocodes, wrapGAppsHook 4 4 }: ··· 20 20 21 21 nativeBuildInputs = [ 22 22 autoreconfHook 23 - pkgconfig 23 + pkg-config 24 24 intltool 25 25 file 26 26 wrapGAppsHook
+2 -2
pkgs/applications/video/vdr/default.nix
··· 1 - { stdenv, fetchgit, fontconfig, libjpeg, libcap, freetype, fribidi, pkgconfig 1 + { stdenv, fetchgit, fontconfig, libjpeg, libcap, freetype, fribidi, pkg-config 2 2 , gettext, systemd, perl, lib 3 3 , enableSystemd ? true 4 4 , enableBidi ? true ··· 28 28 nativeBuildInputs = [ perl ]; 29 29 30 30 # plugins uses the same build environment as vdr 31 - propagatedNativeBuildInputs = [ pkgconfig gettext ]; 31 + propagatedNativeBuildInputs = [ pkg-config gettext ]; 32 32 33 33 installFlags = [ 34 34 "DESTDIR=$(out)"
+2 -2
pkgs/applications/video/vlc/default.nix
··· 1 1 { lib, stdenv, fetchurl, autoreconfHook 2 2 , libarchive, perl, xorg, libdvdnav, libbluray 3 3 , zlib, a52dec, libmad, faad2, ffmpeg_3, alsaLib 4 - , pkgconfig, dbus, fribidi, freefont_ttf, libebml, libmatroska 4 + , pkg-config, dbus, fribidi, freefont_ttf, libebml, libmatroska 5 5 , libvorbis, libtheora, speex, lua5, libgcrypt, libgpgerror, libupnp 6 6 , libcaca, libpulseaudio, flac, schroedinger, libxml2, librsvg 7 7 , mpeg2dec, systemd, gnutls, avahi, libcddb, libjack2, SDL, SDL_image ··· 55 55 ++ optional jackSupport libjack2 56 56 ++ optionals chromecastSupport [ protobuf libmicrodns ]; 57 57 58 - nativeBuildInputs = [ autoreconfHook perl pkgconfig removeReferencesTo ] 58 + nativeBuildInputs = [ autoreconfHook perl pkg-config removeReferencesTo ] 59 59 ++ optionals withQt5 [ wrapQtAppsHook ]; 60 60 61 61 enableParallelBuilding = true;
+2 -2
pkgs/applications/video/vokoscreen/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, mkDerivation 2 - , pkgconfig, qtbase, qttools, qmake, qtmultimedia, qtx11extras, alsaLib, libv4l, libXrandr 2 + , pkg-config, qtbase, qttools, qmake, qtmultimedia, qtx11extras, alsaLib, libv4l, libXrandr 3 3 , ffmpeg 4 4 }: 5 5 ··· 15 15 sha256 = "1a85vbsi53mhzva49smqwcs61c51wv3ic410nvb9is9nlsbifwan"; 16 16 }; 17 17 18 - nativeBuildInputs = [ pkgconfig qmake ]; 18 + nativeBuildInputs = [ pkg-config qmake ]; 19 19 buildInputs = [ 20 20 alsaLib 21 21 libv4l
+2 -2
pkgs/applications/video/webcamoid/default.nix
··· 1 - { lib, fetchFromGitHub, pkgconfig, libxcb, mkDerivation, qmake 1 + { lib, fetchFromGitHub, pkg-config, libxcb, mkDerivation, qmake 2 2 , qtbase, qtdeclarative, qtquickcontrols, qtquickcontrols2 3 3 , ffmpeg-full, gst_all_1, libpulseaudio, alsaLib, jack2 4 4 , v4l-utils }: ··· 22 22 v4l-utils 23 23 ]; 24 24 25 - nativeBuildInputs = [ pkgconfig qmake ]; 25 + nativeBuildInputs = [ pkg-config qmake ]; 26 26 27 27 qmakeFlags = [ 28 28 "Webcamoid.pro"
+2 -2
pkgs/applications/video/wxcam/default.nix
··· 1 1 { lib, stdenv, fetchurl 2 - , pkgconfig 2 + , pkg-config 3 3 , intltool 4 4 , libX11, libXv, libSM 5 5 , gtk, libglade ··· 22 22 }; 23 23 24 24 buildInputs = with lib; 25 - [ pkgconfig intltool libX11 libXv libSM gtk libglade wxGTK perlPackages.XMLParser xvidcore mjpegtools alsaLib libv4l cimg ]; 25 + [ pkg-config intltool libX11 libXv libSM gtk libglade wxGTK perlPackages.XMLParser xvidcore mjpegtools alsaLib libv4l cimg ]; 26 26 27 27 NIX_CFLAGS_COMPILE="-I ${cimg}/include/cimg"; 28 28
+2 -2
pkgs/applications/video/xine-ui/default.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig, xorg, libpng, xineLib, readline, ncurses, curl 1 + {lib, stdenv, fetchurl, pkg-config, xorg, libpng, xineLib, readline, ncurses, curl 2 2 , lirc, shared-mime-info, libjpeg }: 3 3 4 4 stdenv.mkDerivation rec { ··· 9 9 sha256 = "10zmmss3hm8gjjyra20qhdc0lb1m6sym2nb2w62bmfk8isfw9gsl"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkgconfig shared-mime-info ]; 12 + nativeBuildInputs = [ pkg-config shared-mime-info ]; 13 13 14 14 buildInputs = 15 15 [ xineLib libpng readline ncurses curl lirc libjpeg
+2 -2
pkgs/applications/video/xvidcap/default.nix
··· 1 - { lib, stdenv, fetchurl, perlPackages, pkgconfig, gtk2 1 + { lib, stdenv, fetchurl, perlPackages, pkg-config, gtk2 2 2 , scrollkeeper, libglade, libXmu, libX11, libXext, gettext 3 3 , lame, libXfixes, libXdamage }: 4 4 ··· 12 12 13 13 patches = [ ./xlib.patch ]; 14 14 15 - nativeBuildInputs = [ pkgconfig ]; 15 + nativeBuildInputs = [ pkg-config ]; 16 16 buildInputs = [ 17 17 gtk2 scrollkeeper 18 18 libglade libXmu gettext lame libXdamage libXfixes libXext libX11
+2 -2
pkgs/applications/virtualization/bochs/default.nix
··· 1 1 { lib, stdenv, fetchurl 2 - , pkgconfig, libtool 2 + , pkg-config, libtool 3 3 , gtk2, libGLU, libGL, readline, libX11, libXpm 4 4 , docbook_xml_dtd_45, docbook_xsl 5 5 , sdlSupport ? true, SDL2 ? null ··· 29 29 patches = [ ./bochs-2.6.11-glibc-2.26.patch ./fix-build-smp.patch ]; 30 30 31 31 buildInputs = 32 - [ pkgconfig libtool gtk2 libGLU libGL readline libX11 libXpm docbook_xml_dtd_45 docbook_xsl ] 32 + [ pkg-config libtool gtk2 libGLU libGL readline libX11 libXpm docbook_xml_dtd_45 docbook_xsl ] 33 33 ++ optionals termSupport [ ncurses ] 34 34 ++ optionals sdlSupport [ SDL2 ] 35 35 ++ optionals wxSupport [ wxGTK ]
+2 -2
pkgs/applications/virtualization/cloud-hypervisor/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, pkgconfig, openssl }: 1 + { lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cloud-hypervisor"; ··· 11 11 sha256 = "h2aWWjycTm84TS89/vhqnAvwOqeeSDtvvCt+Is6I0eI="; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ openssl ]; 16 16 17 17 cargoPatches = [ ./cargo-lock-vendor-fix.patch ];
+2 -2
pkgs/applications/virtualization/crosvm/default.nix
··· 1 1 { stdenv, lib, rustPlatform, fetchgit, runCommand, symlinkJoin 2 - , pkgconfig, minijail, dtc, libusb1, libcap, linux 2 + , pkg-config, minijail, dtc, libusb1, libcap, linux 3 3 }: 4 4 5 5 let ··· 55 55 56 56 cargoSha256 = "0lhivwvdihslwp81i3sa5q88p5hr83bzkvklrcgf6x73arwk8kdz"; 57 57 58 - nativeBuildInputs = [ pkgconfig ]; 58 + nativeBuildInputs = [ pkg-config ]; 59 59 60 60 buildInputs = [ dtc libcap libusb1 minijail ]; 61 61
+2 -2
pkgs/applications/virtualization/crun/default.nix
··· 3 3 , fetchFromGitHub 4 4 , autoreconfHook 5 5 , go-md2man 6 - , pkgconfig 6 + , pkg-config 7 7 , libcap 8 8 , libseccomp 9 9 , python3 ··· 45 45 fetchSubmodules = true; 46 46 }; 47 47 48 - nativeBuildInputs = [ autoreconfHook go-md2man pkgconfig python3 ]; 48 + nativeBuildInputs = [ autoreconfHook go-md2man pkg-config python3 ]; 49 49 50 50 buildInputs = [ libcap libseccomp systemd yajl ]; 51 51
+2 -2
pkgs/applications/virtualization/libnvidia-container/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 - , pkgconfig 4 + , pkg-config 5 5 , libelf 6 6 , libcap 7 7 , libseccomp ··· 73 73 NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ]; 74 74 NIX_LDFLAGS = [ "-L${libtirpc.dev}/lib" "-ltirpc" ]; 75 75 76 - nativeBuildInputs = [ pkgconfig rpcsvc-proto makeWrapper ]; 76 + nativeBuildInputs = [ pkg-config rpcsvc-proto makeWrapper ]; 77 77 78 78 buildInputs = [ libelf libcap libseccomp libtirpc ]; 79 79
+2 -2
pkgs/applications/virtualization/looking-glass-client/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, SDL2_ttf, spice-protocol 1 + { lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL2, SDL2_ttf, spice-protocol 2 2 , fontconfig, libX11, freefont_ttf, nettle, libpthreadstubs, libXau, libXdmcp 3 3 , libXi, libXext, wayland, libffi, libGLU, expat, libbfd 4 4 }: ··· 15 15 fetchSubmodules = true; 16 16 }; 17 17 18 - nativeBuildInputs = [ cmake pkgconfig ]; 18 + nativeBuildInputs = [ cmake pkg-config ]; 19 19 20 20 buildInputs = [ 21 21 SDL2 SDL2_ttf spice-protocol fontconfig libX11 freefont_ttf nettle
+2 -2
pkgs/applications/virtualization/open-vm-tools/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, makeWrapper, autoreconfHook, 2 2 fuse, libmspack, openssl, pam, xercesc, icu, libdnet, procps, libtirpc, rpcsvc-proto, 3 3 libX11, libXext, libXinerama, libXi, libXrender, libXrandr, libXtst, 4 - pkgconfig, glib, gdk-pixbuf-xlib, gtk3, gtkmm3, iproute, dbus, systemd, which, 4 + pkg-config, glib, gdk-pixbuf-xlib, gtk3, gtkmm3, iproute, dbus, systemd, which, 5 5 withX ? true }: 6 6 7 7 stdenv.mkDerivation rec { ··· 19 19 20 20 outputs = [ "out" "dev" ]; 21 21 22 - nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig ]; 22 + nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ]; 23 23 buildInputs = [ fuse glib icu libdnet libmspack libtirpc openssl pam procps rpcsvc-proto xercesc ] 24 24 ++ lib.optionals withX [ gdk-pixbuf-xlib gtk3 gtkmm3 libX11 libXext libXinerama libXi libXrender libXrandr libXtst ]; 25 25
+2 -2
pkgs/applications/virtualization/qemu/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, python, zlib, pkgconfig, glib 1 + { lib, stdenv, fetchurl, fetchpatch, python, zlib, pkg-config, glib 2 2 , perl, pixman, vde2, alsaLib, texinfo, flex 3 3 , bison, lzo, snappy, libaio, gnutls, nettle, curl 4 4 , makeWrapper ··· 49 49 sha256 = "1rd41wwlvp0vpialjp2czs6i3lsc338xc72l3zkbb7ixjfslw5y9"; 50 50 }; 51 51 52 - nativeBuildInputs = [ python python.pkgs.sphinx pkgconfig flex bison ] 52 + nativeBuildInputs = [ python python.pkgs.sphinx pkg-config flex bison ] 53 53 ++ optionals gtkSupport [ wrapGAppsHook ]; 54 54 buildInputs = 55 55 [ zlib glib perl pixman
+2 -2
pkgs/applications/virtualization/qtemu/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchFromGitLab, pkgconfig, qmake, qtbase, qemu, makeWrapper }: 1 + { lib, stdenv, mkDerivation, fetchFromGitLab, pkg-config, qmake, qtbase, qemu, makeWrapper }: 2 2 3 3 mkDerivation rec { 4 4 pname = "qtemu"; ··· 13 13 14 14 nativeBuildInputs = [ 15 15 qmake 16 - pkgconfig 16 + pkg-config 17 17 ]; 18 18 19 19 buildInputs = [
+2 -2
pkgs/applications/virtualization/spice-vdagent/default.nix
··· 1 - {lib, stdenv, fetchurl, pkgconfig, alsaLib, spice-protocol, glib, 1 + {lib, stdenv, fetchurl, pkg-config, alsaLib, spice-protocol, glib, 2 2 libpciaccess, libxcb, libXrandr, libXinerama, libXfixes, dbus, libdrm, 3 3 systemd}: 4 4 stdenv.mkDerivation rec { ··· 14 14 postPatch = '' 15 15 substituteInPlace data/spice-vdagent.desktop --replace /usr $out 16 16 ''; 17 - nativeBuildInputs = [ pkgconfig ]; 17 + nativeBuildInputs = [ pkg-config ]; 18 18 buildInputs = [ alsaLib spice-protocol glib libdrm 19 19 libpciaccess libxcb libXrandr libXinerama libXfixes 20 20 dbus systemd ] ;
+2 -2
pkgs/applications/virtualization/virt-manager/qt.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, pkgconfig 1 + { mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, pkg-config 2 2 , qtbase, qtmultimedia, qtsvg, qttools, krdc 3 3 , libvncserver, libvirt, pcre, pixman, qtermwidget, spice-gtk, spice-protocol 4 4 , libselinux, libsepol, util-linux ··· 35 35 libselinux libsepol util-linux 36 36 ]; 37 37 38 - nativeBuildInputs = [ cmake pkgconfig qttools ]; 38 + nativeBuildInputs = [ cmake pkg-config qttools ]; 39 39 40 40 meta = with lib; { 41 41 homepage = "https://f1ash.github.io/qt-virt-manager";
+2 -2
pkgs/applications/virtualization/virt-viewer/default.nix
··· 1 - { lib, stdenv, fetchurl, pkgconfig, intltool, shared-mime-info, wrapGAppsHook 1 + { lib, stdenv, fetchurl, pkg-config, intltool, shared-mime-info, wrapGAppsHook 2 2 , glib, gsettings-desktop-schemas, gtk-vnc, gtk3, libvirt, libvirt-glib, libxml2, vte 3 3 , spiceSupport ? true 4 4 , spice-gtk ? null, spice-protocol ? null, libcap ? null, gdbm ? null ··· 19 19 sha256 = "09a83mzyn3b4nd7wpa659g1zf1fjbzb79rk968bz6k5xl21k7d4i"; 20 20 }; 21 21 22 - nativeBuildInputs = [ pkgconfig intltool shared-mime-info wrapGAppsHook glib ]; 22 + nativeBuildInputs = [ pkg-config intltool shared-mime-info wrapGAppsHook glib ]; 23 23 buildInputs = [ 24 24 glib gsettings-desktop-schemas gtk-vnc gtk3 libvirt libvirt-glib libxml2 vte 25 25 ] ++ optionals spiceSupport [
+2 -2
pkgs/applications/virtualization/virtualbox/default.nix
··· 1 1 { config, stdenv, fetchurl, lib, iasl, dev86, pam, libxslt, libxml2, wrapQtAppsHook 2 2 , libX11, xorgproto, libXext, libXcursor, libXmu, libIDL, SDL, libcap, libGL 3 3 , libpng, glib, lvm2, libXrandr, libXinerama, libopus, qtbase, qtx11extras 4 - , qttools, qtsvg, qtwayland, pkgconfig, which, docbook_xsl, docbook_xml_dtd_43 4 + , qttools, qtsvg, qtwayland, pkg-config, which, docbook_xsl, docbook_xml_dtd_43 5 5 , alsaLib, curl, libvpx, nettools, dbus, substituteAll, fetchpatch 6 6 # If open-watcom-bin is not passed, VirtualBox will fall back to use 7 7 # the shipped alternative sources (assembly). ··· 45 45 46 46 outputs = [ "out" "modsrc" ]; 47 47 48 - nativeBuildInputs = [ pkgconfig which docbook_xsl docbook_xml_dtd_43 ] 48 + nativeBuildInputs = [ pkg-config which docbook_xsl docbook_xml_dtd_43 ] 49 49 ++ optional (!headless) wrapQtAppsHook; 50 50 51 51 # Wrap manually because we wrap just a small number of executables.
+1 -1
pkgs/top-level/all-packages.nix
··· 24034 24034 opera = callPackage ../applications/networking/browsers/opera {}; 24035 24035 24036 24036 orca = python3Packages.callPackage ../applications/misc/orca { 24037 - inherit (pkgs) pkgconfig; 24037 + inherit (pkgs) pkg-config; 24038 24038 }; 24039 24039 24040 24040 orca-c = callPackage ../applications/audio/orca-c {};
+1 -1
pkgs/top-level/python-packages.nix
··· 4872 4872 4873 4873 poetry-core = callPackage ../development/python-modules/poetry-core { }; 4874 4874 4875 - poezio = callPackage ../applications/networking/instant-messengers/poezio { inherit (pkgs) pkgconfig; }; 4875 + poezio = callPackage ../applications/networking/instant-messengers/poezio { inherit (pkgs) pkg-config; }; 4876 4876 4877 4877 polib = callPackage ../development/python-modules/polib { }; 4878 4878