about summary refs log tree commit diff
path: root/pkgs/games/nudoku/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/nudoku/default.nix')
-rw-r--r--pkgs/games/nudoku/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/nudoku/default.nix b/pkgs/games/nudoku/default.nix
index b8ef2b3cbed44..aaa6d3248094a 100644
--- a/pkgs/games/nudoku/default.nix
+++ b/pkgs/games/nudoku/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gettext, ncurses }:
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gettext, ncurses }:
 
 stdenv.mkDerivation rec {
   pname = "nudoku";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
     substituteInPlace configure.ac --replace 0.19 0.20
   '';
 
-  nativeBuildInputs = [ autoreconfHook pkgconfig gettext ];
+  nativeBuildInputs = [ autoreconfHook pkg-config gettext ];
   buildInputs = [ ncurses ];
 
   configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-nls";