From 38c27f2baae00755382eaba8e248dc0b640212b0 Mon Sep 17 00:00:00 2001 From: Joshua Batty Date: Mon, 1 Jul 2024 12:09:33 +1000 Subject: [PATCH] add missing packages to forc-plugins list (#141) `forc-crypto` & `forc-debug` were added in #138 but the refresh manifests are [failing](https://github.com/FuelLabs/fuel.nix/actions/runs/9727826909/job/26848946788) I think this is because I forgot to add them to the patches.nix file in the forc-plugins list. Hopefully this is all that's needed but we'll see once this is merged and the refresh manifests job is run again. --- patches.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/patches.nix b/patches.nix index 15eeba3e..a212a7f1 100644 --- a/patches.nix +++ b/patches.nix @@ -4,6 +4,8 @@ {pkgs}: let forc-plugins = [ "forc-client" + "forc-crypto" + "forc-debug" "forc-doc" "forc-fmt" "forc-lsp"