mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pactorio: fix darwin build
This commit is contained in:
parent
a1d1f086c7
commit
049d5a7219
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ fetchFromGitHub, installShellFiles, lib, rustPlatform }:
|
||||
{ fetchFromGitHub, installShellFiles, lib, stdenv, rustPlatform, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pactorio";
|
||||
|
@ -14,6 +14,7 @@ rustPlatform.buildRustPackage rec {
|
|||
cargoSha256 = "1m7bvi6i52xqvssjx5fr2dz25ny7hkmb8w8p23pczpdmpd2y0r7r";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
buildInputs = lib.optional stdenv.isDarwin Security;
|
||||
|
||||
preFixup = ''
|
||||
completions=($releaseDir/build/pactorio-*/out/completions)
|
||||
|
|
|
@ -13452,7 +13452,9 @@ in
|
|||
libiberty_static = libiberty.override { staticBuild = true; };
|
||||
};
|
||||
|
||||
pactorio = callPackage ../development/tools/pactorio { };
|
||||
pactorio = callPackage ../development/tools/pactorio {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
pahole = callPackage ../development/tools/misc/pahole {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue