Commit 463208b4 authored by happysalada's avatar happysalada Committed by Yt
Browse files

gleam: fix darwin build

parent eef729c8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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=";

+1 −1
Original line number Diff line number Diff line
@@ -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 { };