Skip to content

Commit

Permalink
remove forc explore (#142)
Browse files Browse the repository at this point in the history
[forc-explorer](https://github.com/FuelLabs/forc-explorer) has been
archived so we are removing it from fuel.nix.
  • Loading branch information
JoshuaBatty authored Jul 3, 2024
1 parent 01a57d6 commit 9469d57
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 61 deletions.
2 changes: 0 additions & 2 deletions book/src/contributing/adding-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ set of repositories:
```sh
# The set of fuel repositories.
declare -A fuel_repos=(
[forc-explorer]="https://github.com/fuellabs/forc-explorer"
[forc-wallet]="https://github.com/fuellabs/forc-wallet"
[fuel-core]="https://github.com/fuellabs/fuel-core"
[sway]="https://github.com/fuellabs/sway"
Expand Down Expand Up @@ -44,7 +43,6 @@ Finally, add a call to `refresh` for the new package:
refresh pkg_forc
refresh pkg_forc_client
refresh pkg_forc_doc
refresh pkg_forc_explore
refresh pkg_forc_fmt
refresh pkg_forc_index
refresh pkg_forc_lsp
Expand Down
1 change: 0 additions & 1 deletion book/src/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ The `fuel.nix` flake provides the following packages:
| [`forc-crypto`][sway-repo] | A Forc plugin for hashing arbitrary data. |
| [`forc-debug`][sway-repo] | A Forc plugin for debugging via CLI and IDE. |
| [`forc-doc`][sway-repo] | Sway API documentation generator. |
| [`forc-explore`][sway-repo] | Runs the Fuel Explorer. |
| [`forc-fmt`][sway-repo] | The Sway code formatter. |
| [`forc-lsp`][sway-repo] | The Sway Language Server Protocol implementation. |
| [`forc-tx`][sway-repo] | Construct transactions with a CLI. |
Expand Down
1 change: 0 additions & 1 deletion filters.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ with pkgs.lib; [
(m: m.pname != "forc-crypto" || versionAtLeast m.version "0.48.1")
(m: m.pname != "forc-debug" || versionAtLeast m.version "0.48.1")
(m: m.pname != "forc-doc" || versionAtLeast m.version "0.29.0")
(m: m.pname != "forc-explore" || versionAtLeast m.version "0.19.0")
(m: m.pname != "forc-fmt" || versionAtLeast m.version "0.19.0")
(m: m.pname != "forc-lsp" || versionAtLeast m.version "0.19.0")
(m: m.pname != "forc-tx" || versionAtLeast m.version "0.33.1")
Expand Down
18 changes: 8 additions & 10 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -238,16 +238,14 @@

sway-dev = pkgs.mkShell {
name = "sway-dev";
inputsFrom = with fuelpkgs;
[
forc-nightly
forc-client-nightly
forc-doc-nightly
forc-fmt-nightly
forc-lsp-nightly
forc-tx-nightly
]
++ pkgs.lib.optional (builtins.hasAttr "forc-explore-nightly" fuelpkgs) fuelpkgs.forc-explore-nightly;
inputsFrom = with fuelpkgs; [
forc-nightly
forc-client-nightly
forc-doc-nightly
forc-fmt-nightly
forc-lsp-nightly
forc-tx-nightly
];
buildInputs = with fuelpkgs; [fuel-core fuel-gql-cli];
};

Expand Down
8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-09-01.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-10-06.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-10-27.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.0.0-nightly-2022-10-28.nix

This file was deleted.

8 changes: 0 additions & 8 deletions manifests/forc-explore-0.28.1.nix

This file was deleted.

1 change: 0 additions & 1 deletion milestones.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
# Commits sourced from:
# https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-testnet.toml
testnet = {
forc-explorer = "4bb7392eed085ee3a6795b98ea25392b3f41ade8";
forc-wallet = "8420eb63b6c288a051831f2871a937a89b9e43bc";
fuel-core = "9fddeccb4d112c148f6793bc3d21131a13778a25";
sway = "2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6";
Expand Down
6 changes: 0 additions & 6 deletions script/refresh-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ echo "Manifests directory: $MANIFESTS_DIR"

# The set of fuel repositories.
declare -A fuel_repos=(
[forc-explorer]="https://github.com/fuellabs/forc-explorer"
[forc-wallet]="https://github.com/fuellabs/forc-wallet"
[fuel-core]="https://github.com/fuellabs/fuel-core"
[sway]="https://github.com/fuellabs/sway"
Expand Down Expand Up @@ -47,10 +46,6 @@ declare -A pkg_forc_doc=(
[name]="forc-doc"
[repo]="${fuel_repos[sway]}"
)
declare -A pkg_forc_explore=(
[name]="forc-explore"
[repo]="${fuel_repos[forc-explorer]}"
)
declare -A pkg_forc_fmt=(
[name]="forc-fmt"
[repo]="${fuel_repos[sway]}"
Expand Down Expand Up @@ -228,7 +223,6 @@ refresh pkg_forc_client
refresh pkg_forc_crypto
refresh pkg_forc_debug
refresh pkg_forc_doc
refresh pkg_forc_explore
refresh pkg_forc_fmt
refresh pkg_forc_lsp
refresh pkg_forc_tx
Expand Down

0 comments on commit 9469d57

Please sign in to comment.