Skip to content
This repository was archived by the owner on Oct 11, 2025. It is now read-only.

Commit c379ef2

Browse files
committed
chore: use haskell-wasm urls
1 parent 794d769 commit c379ef2

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: ghc-wasm-meta
5050
run: |
5151
pushd "$(mktemp -d)"
52-
curl -f -L --retry 5 https://gitlab.haskell.org/ghc/ghc-wasm-meta/-/archive/master/ghc-wasm-meta-master.tar.gz | tar xz --strip-components=1
52+
curl -f -L --retry 5 https://gitlab.haskell.org/haskell-wasm/ghc-wasm-meta/-/archive/master/ghc-wasm-meta-master.tar.gz | tar xz --strip-components=1
5353
SKIP_GHC=1 ./setup.sh
5454
~/.ghc-wasm/add_to_github_path.sh
5555
popd
@@ -108,7 +108,7 @@ jobs:
108108
- name: ghc-wasm-meta
109109
run: |
110110
pushd "$(mktemp -d)"
111-
curl -f -L --retry 5 https://gitlab.haskell.org/ghc/ghc-wasm-meta/-/archive/master/ghc-wasm-meta-master.tar.gz | tar xz --strip-components=1
111+
curl -f -L --retry 5 https://gitlab.haskell.org/haskell-wasm/ghc-wasm-meta/-/archive/master/ghc-wasm-meta-master.tar.gz | tar xz --strip-components=1
112112
./setup.sh
113113
~/.ghc-wasm/add_to_github_path.sh
114114
popd

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The artifacts will be available in `frontend/dist`.
4545
You can set up the toolchain by either:
4646

4747
- Using
48-
[`ghc-wasm-meta`](https://gitlab.haskell.org/ghc/ghc-wasm-meta#getting-started-without-nix)
48+
[`ghc-wasm-meta`](https://gitlab.haskell.org/haskell-wasm/ghc-wasm-meta#getting-started-without-nix)
4949
directly to set up ghc head or ghc 9.10
5050
- Using [`ghcup`](https://www.haskell.org/ghcup/guide/#cross-support)
5151
to set up ghc 9.10 (9.10.1.20241021 or later, with TemplateHaskell support)

flake.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
inputs = {
3-
ghc-wasm-meta.url = "gitlab:ghc/ghc-wasm-meta?host=gitlab.haskell.org";
3+
ghc-wasm-meta.url = "gitlab:haskell-wasm/ghc-wasm-meta?host=gitlab.haskell.org";
44
};
55
outputs = inputs: inputs.ghc-wasm-meta.inputs.flake-utils.lib.eachDefaultSystem (system:
66
let pkgs = inputs.ghc-wasm-meta.inputs.nixpkgs.legacyPackages.${system};

0 commit comments

Comments
 (0)