├── .travis.yml └── README.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: nix 2 | nix: 2.2.2 3 | script: 4 | - nix eval --raw '(import ./tests.nix)' --show-trace 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **YANTS** is Yet Another Nix Type System. 2 | 3 | Its code **has moved** to `//depot/nix/yants` on [git.tazj.in][]. At this point 4 | most of my software (unless it lives in other organisations) is no longer 5 | developed on GitHub. 6 | 7 | If you are looking for an issue tracker, issues and patches for my projects are 8 | tracked at [depot@tazj.in][] (which is also the email address that you can send 9 | issues and patches to). 10 | 11 | [git.tazj.in]: https://git.tazj.in/tree/nix/yants 12 | [depot@tazj.in]: https://groups.google.com/a/tazj.in/forum/?hl=en#!forum/depot 13 | --------------------------------------------------------------------------------