summaryrefslogtreecommitdiffstats
path: root/pkgs/games/ferium
diff options
context:
space:
mode:
authorJohn Garcia <jgarcia3788@yahoo.co.uk>2024-04-09 12:00:18 +0100
committerJohn Garcia <jgarcia3788@yahoo.co.uk>2024-04-09 12:00:18 +0100
commit275734e04cca7fdf76eeb7f6fa2a539eef8bb762 (patch)
tree198eed655068b02e07de942dd2b76c19b0f99bec /pkgs/games/ferium
parent4bab48ccc3b3bb2cd1afc9295a27ef7e1195aca3 (diff)
ferium: fix Darwin build
Diffstat (limited to 'pkgs/games/ferium')
-rw-r--r--pkgs/games/ferium/default.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/pkgs/games/ferium/default.nix b/pkgs/games/ferium/default.nix
index 2f98970c7065..f5958fec8671 100644
--- a/pkgs/games/ferium/default.nix
+++ b/pkgs/games/ferium/default.nix
@@ -1,4 +1,11 @@
-{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, Security
+, SystemConfiguration
+, installShellFiles
+}:
rustPlatform.buildRustPackage rec {
pname = "ferium";
@@ -8,10 +15,10 @@ rustPlatform.buildRustPackage rec {
owner = "gorilla-devs";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8=";
+ hash = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8=";
};
- buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+ buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
cargoHash = "sha256-5ClBS42hWw3ULEG1Qn+fiM6dvJ+xS4Dusy3BCj5Cvbg=";