mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
Merge pull request #123479 from stephank/fix-pactorio-darwin
pactorio: fix darwin build
This commit is contained in:
commit
10d2be7d5a
@ -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 New Issue
Block a user