From f65b765dc0fa8b3f5dce5518e052ecc4311019b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 May 2023 09:30:40 +0000 Subject: [PATCH] Bump fantomas from 6.0.1 to 6.0.2 (#14) * Bump fantomas from 6.0.1 to 6.0.2 Bumps [fantomas](https://github.com/fsprojects/fantomas) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/fsprojects/fantomas/releases) - [Changelog](https://github.com/fsprojects/fantomas/blob/main/CHANGELOG.md) - [Commits](https://github.com/fsprojects/fantomas/compare/v6.0.1...v6.0.2) --- updated-dependencies: - dependency-name: fantomas dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Fix flake * Read from config file --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Smaug123 --- .config/dotnet-tools.json | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 40e3444..18e4663 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "fantomas": { - "version": "6.0.1", + "version": "6.0.2", "commands": [ "fantomas" ] diff --git a/flake.nix b/flake.nix index 3e8c457..f06ef02 100644 --- a/flake.nix +++ b/flake.nix @@ -41,7 +41,7 @@ }; in { packages = { - fantomas = dotnetTool "fantomas" "6.0.1" "sha256-TNAkurZ0NYI2Tkr99ms9MdAMLLKCQzemx5zHo/hDOTo="; + fantomas = dotnetTool "fantomas" (builtins.fromJSON (builtins.readFile ./.config/dotnet-tools.json)).tools.fantomas.version "sha256-zASGyIKyVEvtoqOYLosKHuxqJgG7l7jW6nSGvU0iMhs="; fetchDeps = let flags = []; runtimeIds = ["win-x64"] ++ map (system: pkgs.dotnetCorePackages.systemToDotnetRid system) dotnet-sdk.meta.platforms;