ferium: fix Darwin build

+11 -4
+10 -3
pkgs/games/ferium/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , Security 6 + , SystemConfiguration 7 + , installShellFiles 8 + }: 2 9 3 10 rustPlatform.buildRustPackage rec { 4 11 pname = "ferium"; ··· 8 15 owner = "gorilla-devs"; 9 16 repo = pname; 10 17 rev = "v${version}"; 11 - sha256 = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8="; 18 + hash = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8="; 12 19 }; 13 20 14 - buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 21 + buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 15 22 16 23 cargoHash = "sha256-5ClBS42hWw3ULEG1Qn+fiM6dvJ+xS4Dusy3BCj5Cvbg="; 17 24
+1 -1
pkgs/top-level/all-packages.nix
··· 36998 36998 fairymax = callPackage ../games/fairymax { }; 36999 36999 37000 37000 ferium = callPackage ../games/ferium { 37001 - inherit (darwin.apple_sdk.frameworks) Security; 37001 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 37002 37002 }; 37003 37003 37004 37004 fheroes2 = callPackage ../games/fheroes2 { };