gleam: fix darwin build
This commit is contained in:
parent
eef729c866
commit
463208b41e
2 changed files with 3 additions and 3 deletions
|
@ -6,8 +6,8 @@
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, openssl
|
, openssl
|
||||||
, Security
|
, Security
|
||||||
, libiconv
|
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
|
, SystemConfiguration
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
|
@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
nativeBuildInputs = [ git pkg-config ];
|
nativeBuildInputs = [ git pkg-config ];
|
||||||
|
|
||||||
buildInputs = [ openssl ] ++
|
buildInputs = [ openssl ] ++
|
||||||
lib.optionals stdenv.isDarwin [ Security libiconv ];
|
lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
|
||||||
|
|
||||||
cargoHash = "sha256-ffnDTGg+m0NUhG2BYjsXb2fWHeQmtDcBGqQDLqwZMWI=";
|
cargoHash = "sha256-ffnDTGg+m0NUhG2BYjsXb2fWHeQmtDcBGqQDLqwZMWI=";
|
||||||
|
|
||||||
|
|
|
@ -16253,7 +16253,7 @@ with pkgs;
|
||||||
gforth = callPackage ../development/compilers/gforth { };
|
gforth = callPackage ../development/compilers/gforth { };
|
||||||
|
|
||||||
gleam = callPackage ../development/compilers/gleam {
|
gleam = callPackage ../development/compilers/gleam {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
||||||
};
|
};
|
||||||
|
|
||||||
gmqcc = callPackage ../development/compilers/gmqcc { };
|
gmqcc = callPackage ../development/compilers/gmqcc { };
|
||||||
|
|
Loading…
Reference in a new issue