Merge pull request #297400 from r-ryantm/auto-update/vcpkg-tool

vcpkg-tool: 2024-02-07 -> 2024-03-14
This commit is contained in:
Weijia Wang 2024-03-25 00:16:35 +01:00 committed by GitHub
commit cd5ef0e975
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -18,13 +18,13 @@
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "vcpkg-tool"; pname = "vcpkg-tool";
version = "2024-02-07"; version = "2024-03-14";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "microsoft"; owner = "microsoft";
repo = "vcpkg-tool"; repo = "vcpkg-tool";
rev = finalAttrs.version; rev = finalAttrs.version;
hash = "sha256-JzErV6Eyoz4fI84Zq5+v8eZEttYyYXGf5tK290J25tQ="; hash = "sha256-xe5a1cK56KvO4DFFz/K1omBCebzTRUOpXDpkOGek10M=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -802,6 +802,7 @@ with pkgs;
sea-orm-cli = callPackage ../development/tools/sea-orm-cli { }; sea-orm-cli = callPackage ../development/tools/sea-orm-cli { };
vcpkg-tool = callPackage ../by-name/vc/vcpkg-tool/package.nix { vcpkg-tool = callPackage ../by-name/vc/vcpkg-tool/package.nix {
stdenv = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv;
fmt = fmt_10; fmt = fmt_10;
}; };