diff options
author | Vincent Ambo <mail@tazj.in> | 2023-02-02T15·01+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-02-02T16·25+0000 |
commit | 2c07ff0f8c126cb475c6e100b56bbaa03303dda7 (patch) | |
tree | c1efa1f2406527678dc3b287a81d64969f6850ea | |
parent | 503e6810e739b288fbbc54d6f97d344311ff2c46 (diff) |
docs(tvix): add more information to README r/5824
The README was very sparse before and we've actually had people email us (as it says to contact us) just to ask what Tvix *is*. This should answer some questions! Change-Id: I0f248cb060eccfe086468afed1d648652b35dfd1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8018 Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: flokli <flokli@flokli.de>
-rw-r--r-- | tvix/README.md | 56 |
1 files changed, 48 insertions, 8 deletions
diff --git a/tvix/README.md b/tvix/README.md index d0947bbecad5..6108a8152418 100644 --- a/tvix/README.md +++ b/tvix/README.md @@ -1,16 +1,56 @@ Tvix ==== -For more information about Tvix, feel free to reach out. -We are interested in people who would like to help us review designs, -brainstorm and describe requirements that we may not yet have considered. +Tvix is a new implementation of the Nix language and package manager. See the +[announcement post][post-1] for information about the background of this +project. -Most of the discussion around development happens on our IRC channel, which -you can join in several ways documented on -[tvl.fyi](https://tvl.fyi/#getting-in-touch). +Tvix is developed by [TVL][tvl] in our monorepo, the `depot`, at +[//tvix][tvix-src]. Code reviews take place on [Gerrit][tvix-gerrit], bugs are +filed in [our issue tracker][b]. -There's also some discussion around development on our -[mailing list](https://inbox.tvl.su). +For more information about Tvix, feel free to reach out. We are interested in +people who would like to help us review designs, brainstorm and describe +requirements that we may not yet have considered. + +Most of the discussion around development happens on our IRC channel, which you +can join in several ways documented on [tvl.fyi][getting-in-touch], or on our +[mailing list][]. + +Contributions to Tvix follow the TVL [review flow][review-docs] and +[contribution guidelines][contributing]. + +[post-1]: https://tvl.fyi/blog/rewriting-nix +[tvl]: https://tvl.fyi +[tvix-src]: https://cs.tvl.fyi/depot/-/tree/tvix/ +[tvix-gerrit]: https://cl.tvl.fyi/q/path:%255Etvix.* +[b]: https://b.tvl.fyi +[getting-in-touch]: https://tvl.fyi/#getting-in-touch +[mailing list]: https://inbox.tvl.su +[review-docs]: https://code.tvl.fyi/about/docs/REVIEWS.md +[contributing]: https://code.tvl.fyi/about/docs/CONTRIBUTING.md + +WARNING: Tvix is not ready for use in production. None of our current APIs +should be considered stable in any way. + +WARNING: Any other instances of this project or repository are +[`josh`-mirrors][josh]. We do not accept code contributions or issues outside of +the tooling and communication methods outlined above. + +[josh]: https://github.com/josh-project/josh + +## Components + +This folder contains the following components: + +* `//tvix/eval` - an implementation of the Nix programming language +* `//tvix/nix-compat` - library functions for compatibility with C++ Nix +* `//tvix/cli` - preliminary REPL & CLI implementation for Tvix +* `//tvix/serde` - Rust library for using the Nix language for app configuration +* `//tvix/store` - implementation of a file store for Tvix + +Some additional folders with auxiliary things exist and can be explored at your +leisure. ## Building the CLI |