Add github: prefix to Roc repo

Without this Nix looks for the flake `flake:roc-lang/roc` in the flake
registries and errors when it can't find the flake.
This commit is contained in:
David Dunn 2024-01-09 13:40:18 +02:00
parent 16a566504d
commit a5b8ca2dce
No known key found for this signature in database
GPG Key ID: 99F10972153A72B0

View File

@ -2,10 +2,10 @@
To quickly try out roc without installing, use `nix run`:
```shell
nix run roc-lang/roc -- <roc args>
nix run github:roc-lang/roc -- <roc args>
# examples:
# - nix run roc-lang/roc -- repl
# - nix run roc-lang/roc -- dev main.roc
# - nix run github:roc-lang/roc -- repl
# - nix run github:roc-lang/roc -- dev main.roc
```
## Use with Flakes