From 8f0d307e2d39f7d42956df76b0fad5380e905343 Mon Sep 17 00:00:00 2001 From: Zaechus Date: Sun, 10 Nov 2024 23:51:47 -0700 Subject: [PATCH] remove nix-shell section from CONTRIBUTING.md --- CONTRIBUTING.md | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7e3919dec..7eeb31147 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,32 +20,3 @@ - Take part in troubleshooting and testing - Star the repo - Follow the maintainers - -## Development with nix - -When you develop with nix you can use the [dev shell](https://github.com/pystardust/ani-cli#nix-shell). - -To run the dev shell you can run the following command in the repository root: -```shell -nix-shell -``` - -The dev shell includes the following packages: -- runtime dependencies of ani-cli -- shfmt -- shellcheck - -Its also possible to use alternative packages for the video player or add features with this command: -```shell -nix-shell --arg true -``` -These are the packages available in the dev shell: -- `withVlc` -- `withIina` -- `chromecastSupport` -- `syncSupport` - -Just chain these commands together when you wanna multiple features for example: -```shell -nix-shell --arg withVlc true --arg chromecastSupport true -```