
Because pkgs.racket-lang doesn't seem to accept paths like .../repo.git#branch?tag So I'm trying to remove the ?tag
12 lines
422 B
Markdown
12 lines
422 B
Markdown
Project Structure
|
|
---
|
|
|
|
- `private/` Contains the implementation
|
|
- `scribblings/` Documentation sources
|
|
- `info.rkt` Racket package metadata
|
|
- `main.rkt` Package front-end, use with `(require trivial)`
|
|
- `no-colon.rkt` Alternate front-end, use with `(require trivial/no-colon)`
|
|
- `*.rkt` Front-ends for specific libraries
|
|
- `*/` Front-ends for the no-colon versions of specific libraries, like `(require format/no-colon)`
|
|
|