Merge pull request #123550 from stephank/fix-trunk-darwin
trunk: fix darwin build
This commit is contained in:
commit
e21b618934
|
@ -1,4 +1,5 @@
|
||||||
{ rustPlatform, fetchFromGitHub, pkg-config, openssl, lib }:
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config
|
||||||
|
, openssl, libiconv, CoreServices, Security }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "trunk";
|
pname = "trunk";
|
||||||
|
@ -12,7 +13,9 @@ rustPlatform.buildRustPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ openssl ];
|
buildInputs = if stdenv.isDarwin
|
||||||
|
then [ libiconv CoreServices Security ]
|
||||||
|
else [ openssl ];
|
||||||
|
|
||||||
cargoSha256 = "Qv7knTmNYtw0tbyWhFIV7tYkQiwFxcNPAeNiGCyeV8s=";
|
cargoSha256 = "Qv7knTmNYtw0tbyWhFIV7tYkQiwFxcNPAeNiGCyeV8s=";
|
||||||
|
|
||||||
|
|
|
@ -9059,7 +9059,9 @@ in
|
||||||
|
|
||||||
trezor-suite = callPackage ../applications/blockchains/trezor-suite { };
|
trezor-suite = callPackage ../applications/blockchains/trezor-suite { };
|
||||||
|
|
||||||
trunk = callPackage ../development/tools/trunk { };
|
trunk = callPackage ../development/tools/trunk {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) CoreServices Security;
|
||||||
|
};
|
||||||
|
|
||||||
tthsum = callPackage ../applications/misc/tthsum { };
|
tthsum = callPackage ../applications/misc/tthsum { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue