summary refs log tree commit diff
path: root/pkgs/games/eidolon
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/eidolon')
-rw-r--r--pkgs/games/eidolon/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/eidolon/default.nix b/pkgs/games/eidolon/default.nix
index bb7f7a68bcf05..3192976b0f62f 100644
--- a/pkgs/games/eidolon/default.nix
+++ b/pkgs/games/eidolon/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchgit, rustPlatform, pkgconfig, openssl }:
+{ lib, stdenv, fetchgit, rustPlatform, pkg-config, openssl }:
 
 rustPlatform.buildRustPackage rec {
   pname = "eidolon";
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "1i8qfphynwi42pkhhgllxq42dnw9f0dd6f829z94a3g91czyqvsw";
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkg-config ];
   buildInputs = [ openssl ];
 
   meta = with lib; {