gleam: fix darwin build

This commit is contained in:
happysalada 2023-11-10 14:53:33 +01:00 committed by Yt
parent eef729c866
commit 463208b41e
2 changed files with 3 additions and 3 deletions

View file

@ -6,8 +6,8 @@
, pkg-config
, openssl
, Security
, libiconv
, nix-update-script
, SystemConfiguration
}:
rustPlatform.buildRustPackage rec {
@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ git pkg-config ];
buildInputs = [ openssl ] ++
lib.optionals stdenv.isDarwin [ Security libiconv ];
lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
cargoHash = "sha256-ffnDTGg+m0NUhG2BYjsXb2fWHeQmtDcBGqQDLqwZMWI=";

View file

@ -16253,7 +16253,7 @@ with pkgs;
gforth = callPackage ../development/compilers/gforth { };
gleam = callPackage ../development/compilers/gleam {
inherit (darwin.apple_sdk.frameworks) Security;
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};
gmqcc = callPackage ../development/compilers/gmqcc { };