Unverified Commit 2c6889b1 authored by Theodore Ni's avatar Theodore Ni
Browse files

vcpkg-tool: use new Darwin SDK pattern

parent c57fe374
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, stdenv
, fetchFromGitHub
, runtimeShell
, apple-sdk_11
, cacert
, cmake
, cmakerc
@@ -40,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: {
  buildInputs = [
    cmakerc
    fmt
  ];
  ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ];

  patches = [
    ./change-lock-location.patch
+0 −1
Original line number Diff line number Diff line
@@ -366,7 +366,6 @@ with pkgs;
  };
  vcpkg-tool = callPackage ../by-name/vc/vcpkg-tool/package.nix {
    stdenv = if stdenv.hostPlatform.isDarwin then overrideSDK stdenv "11.0" else stdenv;
    fmt = fmt_10;
  };