Skip to content

Commit d659270

Browse files
committed
add missing plugins
1 parent 8219b7d commit d659270

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

book/src/packages.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ The `fuel.nix` flake provides the following packages:
1515
| [`forc-fmt`][sway-repo] | The Sway code formatter. |
1616
| [`forc-lsp`][sway-repo] | The Sway Language Server Protocol implementation. |
1717
| [`forc-tx`][sway-repo] | Construct transactions with a CLI. |
18+
| [`forc-call`][sway-repo] | A Forc plugin to call contracts and query the chain from the CLI. |
19+
| [`forc-migrate`][sway-repo] | Migrate Sway projects to the next breaking version. |
20+
| [`forc-node`][sway-repo] | Bootstrap and run a Fuel node (local, testnet, ignition). |
21+
| [`forc-publish`][sway-repo] | Publish a package to the Forc registry. |
1822
| [`forc-wallet`][forc-wallet-repo] | A Fuel Wallet CLI implementation. |
1923
| [`sway-vim`][sway-vim-repo] | The Sway Vim plugin. |
2024
| `fuel` | All of the above tools under a single package. |

filters.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ with pkgs.lib; [
1515
(m: m.pname != "forc-lsp" || versionAtLeast m.version "0.19.0")
1616
(m: m.pname != "forc-tx" || versionAtLeast m.version "0.33.1")
1717
(m: m.pname != "forc-wallet" || versionAtLeast m.version "0.1.0")
18+
(m: m.pname != "forc-call" || versionAtLeast m.version "0.69.1")
19+
(m: m.pname != "forc-migrate" || versionAtLeast m.version "0.69.1")
20+
(m: m.pname != "forc-node" || versionAtLeast m.version "0.69.1")
21+
(m: m.pname != "forc-publish" || versionAtLeast m.version "0.69.1")
1822
(m: m.pname != "fuel-core" || versionAtLeast m.version "0.9.0")
1923
(m: m.pname != "fuel-core-client" || (versionAtLeast m.version "0.14.2" && m.date >= "2022-12-17"))
2024
(m: m.pname != "fuel-gql-cli" || (versionAtLeast m.version "0.9.0" && m.date < "2022-12-17"))

flake.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,10 @@
247247
forc-fmt-nightly
248248
forc-lsp-nightly
249249
forc-tx-nightly
250+
forc-call-nightly
251+
forc-migrate-nightly
252+
forc-node-nightly
253+
forc-publish-nightly
250254
];
251255
buildInputs = with fuelpkgs; [fuel-core fuel-gql-cli];
252256
};

patches.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"forc-fmt"
1111
"forc-lsp"
1212
"forc-tx"
13+
"forc-call"
14+
"forc-migrate"
15+
"forc-node"
16+
"forc-publish"
1317
];
1418
in [
1519
# By default, most packages have their `Cargo.lock` file in the repo root.

0 commit comments

Comments
 (0)