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
1
-
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, installShellFiles }:
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, rustPlatform
5
5
+
, Security
6
6
+
, SystemConfiguration
7
7
+
, installShellFiles
8
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
11
-
sha256 = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8=";
18
18
+
hash = "sha256-tYRs6HfFTdUZqWal9pLZ0uUNCPr3+zQz5JV2ohOLIP8=";
12
19
};
13
20
14
14
-
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
21
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
37001
-
inherit (darwin.apple_sdk.frameworks) Security;
37001
37001
+
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
37002
37002
};
37003
37003
37004
37004
fheroes2 = callPackage ../games/fheroes2 { };