forked from mirrors/nixpkgs
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 {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "pactorio";
|
pname = "pactorio";
|
||||||
|
@ -14,6 +14,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
cargoSha256 = "1m7bvi6i52xqvssjx5fr2dz25ny7hkmb8w8p23pczpdmpd2y0r7r";
|
cargoSha256 = "1m7bvi6i52xqvssjx5fr2dz25ny7hkmb8w8p23pczpdmpd2y0r7r";
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
completions=($releaseDir/build/pactorio-*/out/completions)
|
completions=($releaseDir/build/pactorio-*/out/completions)
|
||||||
|
|
|
@ -13452,7 +13452,9 @@ in
|
||||||
libiberty_static = libiberty.override { staticBuild = true; };
|
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 {};
|
pahole = callPackage ../development/tools/misc/pahole {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue