tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ferium: fix Darwin build
John Garcia
2 years ago
275734e0
4bab48cc
+11
-4
2 changed files
expand all
collapse all
unified
split
pkgs
games
ferium
default.nix
top-level
all-packages.nix
+10
-3
pkgs/games/ferium/default.nix
···
1
-
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
0
0
0
0
0
0
0
2
3
rustPlatform.buildRustPackage rec {
4
pname = "ferium";
···
8
owner = "gorilla-devs";
9
repo = pname;
10
rev = "v${version}";
11
-
sha256 = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8=";
12
};
13
14
-
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
15
16
cargoHash = "sha256-5ClBS42hWw3ULEG1Qn+fiM6dvJ+xS4Dusy3BCj5Cvbg=";
17
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchFromGitHub
4
+
, rustPlatform
5
+
, Security
6
+
, SystemConfiguration
7
+
, installShellFiles
8
+
}:
9
10
rustPlatform.buildRustPackage rec {
11
pname = "ferium";
···
15
owner = "gorilla-devs";
16
repo = pname;
17
rev = "v${version}";
18
+
hash = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8=";
19
};
20
21
+
buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
22
23
cargoHash = "sha256-5ClBS42hWw3ULEG1Qn+fiM6dvJ+xS4Dusy3BCj5Cvbg=";
24
+1
-1
pkgs/top-level/all-packages.nix
···
36998
fairymax = callPackage ../games/fairymax { };
36999
37000
ferium = callPackage ../games/ferium {
37001
-
inherit (darwin.apple_sdk.frameworks) Security;
37002
};
37003
37004
fheroes2 = callPackage ../games/fheroes2 { };
···
36998
fairymax = callPackage ../games/fairymax { };
36999
37000
ferium = callPackage ../games/ferium {
37001
+
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
37002
};
37003
37004
fheroes2 = callPackage ../games/fheroes2 { };