From e22dde472f067a0b5f5013ea3e8fc1c12a13d3fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 22:44:50 +0000 Subject: [PATCH] Bump NUnit from 4.0.1 to 4.1.0 (#7) * Bump NUnit from 4.0.1 to 4.1.0 Bumps [NUnit](https://github.com/nunit/nunit) from 4.0.1 to 4.1.0. - [Release notes](https://github.com/nunit/nunit/releases) - [Changelog](https://github.com/nunit/nunit/blob/master/CHANGES.md) - [Commits](https://github.com/nunit/nunit/compare/v4.0.1...4.1.0) --- updated-dependencies: - dependency-name: NUnit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- PrattParser.Test/PrattParser.Test.fsproj | 3 +-- flake.nix | 4 ++-- nix/deps.nix | 13 ++++--------- 3 files changed, 7 insertions(+), 13 deletions(-) diff --git a/PrattParser.Test/PrattParser.Test.fsproj b/PrattParser.Test/PrattParser.Test.fsproj index 1edaf94..40ea26b 100644 --- a/PrattParser.Test/PrattParser.Test.fsproj +++ b/PrattParser.Test/PrattParser.Test.fsproj @@ -16,9 +16,8 @@ - + - diff --git a/flake.nix b/flake.nix index 4cd8abd..05ea344 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ pkgs.stdenvNoCC.mkDerivation rec { name = toolName; version = toolVersion; - nativeBuildInputs = [pkgs.makeWrapper]; + nativeBuildInputs = [pkgs.makeWrapper pkgs.dotnetCorePackages.runtime_8_0]; src = pkgs.fetchNuGet { pname = name; version = version; @@ -38,7 +38,7 @@ runHook preInstall mkdir -p "$out/lib" cp -r ./bin/* "$out/lib" - makeWrapper "${dotnet-runtime}/bin/dotnet" "$out/bin/${name}" --add-flags "$out/lib/${dll}.dll" + makeWrapper "${dotnet-runtime}/bin/dotnet" "$out/bin/${name}" --add-flags "$out/lib/${dll}.dll" --set PATH ${pkgs.lib.makeBinPath [pkgs.dotnet-sdk_8]} runHook postInstall ''; }; diff --git a/nix/deps.nix b/nix/deps.nix index 4281ab3..f6b81f9 100644 --- a/nix/deps.nix +++ b/nix/deps.nix @@ -8,8 +8,8 @@ }) (fetchNuGet { pname = "G-Research.FSharp.Analyzers"; - version = "0.8.0"; - sha256 = "sha256-EeXo3InJ1AmCv9y5a23q0/uSLkBbNefzsTy7VXgTm+U="; + version = "0.9.3"; + sha256 = "sha256-5RFdhBWyf13eQNUuh60+zR1/f19g78yvTP46w3vT1L0="; }) (fetchNuGet { pname = "fantomas"; @@ -21,11 +21,6 @@ version = "4.0.25"; sha256 = "0zjq8an9cr0l7wxdmm9n9s3iyq5m0zl4x0h0wmy5cz7am8y15qc4"; }) - (fetchNuGet { - pname = "coverlet.collector"; - version = "6.0.0"; - sha256 = "12j34vrkmph8lspbafnqmfnj2qvysz1jcrks2khw798s6dwv0j90"; - }) (fetchNuGet { pname = "FSharp.Core"; version = "8.0.101"; @@ -168,8 +163,8 @@ }) (fetchNuGet { pname = "NUnit"; - version = "4.0.1"; - sha256 = "0jgiq3dbwli5r70j0bw7021d69r7bhr58s8kphlpjmf7k47l5pcd"; + version = "4.1.0"; + sha256 = "0fj6xwgqaxq3mrai86bklclfmjkzf038mrslwfqf4ignaz9f7g5j"; }) (fetchNuGet { pname = "NUnit3TestAdapter";