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,11 +1,11 @@
{ lib, stdenv, fetchurl, pkgconfig, libX11, libXtst, qt4 }:
{ lib, stdenv, fetchurl, pkg-config, libX11, libXtst, qt4 }:
stdenv.mkDerivation rec {
name = "qjoypad-4.1.0";
src = fetchurl {
url = "mirror://sourceforge/qjoypad/${name}.tar.gz";
sha256 = "1jlm7i26nfp185xrl41kz5z6fgvyj51bjpz48cg27xx64y40iamm";
};
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libX11 libXtst qt4 ];
NIX_LDFLAGS = "-lX11";
patchPhase = ''