pkgs/tools: pkgconfig -> pkg-config

This commit is contained in:
Ben Siraphob
2021-01-16 23:49:59 -08:00
committed by Jonathan Ringer
parent fce00d15c2
commit 76f93cc731
251 changed files with 500 additions and 500 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
{ fetchFromGitHub, lib, stdenv, libunwind, libraw1394, libjpeg, libiec61883, libdv
, libavc1394, pkgconfig, autoreconfHook }:
, libavc1394, pkg-config, autoreconfHook }:
stdenv.mkDerivation {
name = "dvgrab-2016-05-16";
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
];
nativeBuildInputs = [
autoreconfHook pkgconfig
autoreconfHook pkg-config
];
meta = with lib; {
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, gtk2, libdv, libjpeg, libpng, libX11, pkgconfig, SDL, SDL_gfx
{ stdenv, lib, fetchurl, gtk2, libdv, libjpeg, libpng, libX11, pkg-config, SDL, SDL_gfx
, withMinimal ? true
}:
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libdv libjpeg libpng ]
++ lib.optionals (!withMinimal) [ gtk2 libX11 SDL SDL_gfx ];
+2 -2
View File
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl
, pkgconfig, libxslt, freetype, libpng, libxml2
, pkg-config, libxslt, freetype, libpng, libxml2
}:
stdenv.mkDerivation rec {
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
# Fixes build with GCC 6
NIX_CFLAGS_COMPILE = "-std=c++03";
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libxslt freetype libpng libxml2 ];
meta = {