pkgs/applications: pkgconfig -> pkg-config

This commit is contained in:
Ben Siraphob
2021-01-16 23:49:59 -08:00
committed by Jonathan Ringer
parent 47e997598c
commit 5d566c43b4
371 changed files with 755 additions and 755 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, pkgconfig, ncurses, readline, conf ? null }:
{ lib, stdenv, fetchFromGitHub, pkg-config, ncurses, readline, conf ? null }:
with lib;
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
configFile = optionalString (conf != null) (builtins.toFile "nnn.h" conf);
preBuild = optionalString (conf != null) "cp ${configFile} src/nnn.h";
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ readline ncurses ];
makeFlags = [ "DESTDIR=${placeholder "out"}" "PREFIX=" ];