Unverified Commit e1ad199c authored by Austin Horstman's avatar Austin Horstman
Browse files

sqlpage: darwin sdk refactor

We can inherit sdk from stdenv and don't need to declare the frameworks.
parent d171b45e
Loading
Loading
Loading
Loading
+4 −12
Original line number Diff line number Diff line
@@ -5,8 +5,6 @@
  pkg-config,
  sqlite,
  zstd,
  stdenv,
  darwin,
  fetchurl,
}:

@@ -82,15 +80,9 @@ rustPlatform.buildRustPackage rec {
    pkg-config
  ];

  buildInputs =
    [
  buildInputs = [
    sqlite
    zstd
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
      darwin.apple_sdk.frameworks.CoreFoundation
      darwin.apple_sdk.frameworks.Security
      darwin.apple_sdk.frameworks.SystemConfiguration
  ];

  env = {