about summary refs log tree commit diff
path: root/pkgs/list-gamecontrollers
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2021-06-16 00:33:48 +0200
committeraszlig <aszlig@nix.build>2021-06-16 00:33:48 +0200
commit8093548f673f27d5a144f1ec5b8b0887f13c5e72 (patch)
tree5964b80c2f9ad723650821decf71b3231ef23f62 /pkgs/list-gamecontrollers
parent9ae4281a5d30a34992844574abb707e949f0d9f9 (diff)
treewide: Replace pkgconfig with pkg-config
This is another alias which got introduced in 2018, because the actual
command is "pkg-config" and so the package name containing a dash is
more reasonable.

The reason why I'm doing this is because NixOS VM tests now disallow
aliases and while the evaluation error in question only affected the
"gnupg" test, I decided to change all occurences in the event that we
might want to disallow aliases for things other than VM tests.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @sternenseemann for "opam-env"
Diffstat (limited to 'pkgs/list-gamecontrollers')
-rw-r--r--pkgs/list-gamecontrollers/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/list-gamecontrollers/default.nix b/pkgs/list-gamecontrollers/default.nix
index 15a9e03c..0fd5ef34 100644
--- a/pkgs/list-gamecontrollers/default.nix
+++ b/pkgs/list-gamecontrollers/default.nix
@@ -1,7 +1,7 @@
-{ runCommandCC, pkgconfig, SDL2 }:
+{ runCommandCC, pkg-config, SDL2 }:
 
 runCommandCC "list-gamecontrollers" {
-  buildInputs = [ pkgconfig SDL2 ];
+  buildInputs = [ pkg-config SDL2 ];
 } ''
   mkdir -p "$out/bin"
   cc -Werror "${./list-gc.c}" \