File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ The `fuel.nix` flake provides the following packages:
15
15
| [ ` forc-fmt ` ] [ sway-repo ] | The Sway code formatter. |
16
16
| [ ` forc-lsp ` ] [ sway-repo ] | The Sway Language Server Protocol implementation. |
17
17
| [ ` 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. |
18
22
| [ ` forc-wallet ` ] [ forc-wallet-repo ] | A Fuel Wallet CLI implementation. |
19
23
| [ ` sway-vim ` ] [ sway-vim-repo ] | The Sway Vim plugin. |
20
24
| ` fuel ` | All of the above tools under a single package. |
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ with pkgs.lib; [
15
15
( m : m . pname != "forc-lsp" || versionAtLeast m . version "0.19.0" )
16
16
( m : m . pname != "forc-tx" || versionAtLeast m . version "0.33.1" )
17
17
( 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" )
18
22
( m : m . pname != "fuel-core" || versionAtLeast m . version "0.9.0" )
19
23
( m : m . pname != "fuel-core-client" || ( versionAtLeast m . version "0.14.2" && m . date >= "2022-12-17" ) )
20
24
( m : m . pname != "fuel-gql-cli" || ( versionAtLeast m . version "0.9.0" && m . date < "2022-12-17" ) )
Original file line number Diff line number Diff line change 247
247
forc-fmt-nightly
248
248
forc-lsp-nightly
249
249
forc-tx-nightly
250
+ forc-call-nightly
251
+ forc-migrate-nightly
252
+ forc-node-nightly
253
+ forc-publish-nightly
250
254
] ;
251
255
buildInputs = with fuelpkgs ; [ fuel-core fuel-gql-cli ] ;
252
256
} ;
Original file line number Diff line number Diff line change 10
10
"forc-fmt"
11
11
"forc-lsp"
12
12
"forc-tx"
13
+ "forc-call"
14
+ "forc-migrate"
15
+ "forc-node"
16
+ "forc-publish"
13
17
] ;
14
18
in [
15
19
# By default, most packages have their `Cargo.lock` file in the repo root.
You can’t perform that action at this time.
0 commit comments