source_url install: fix hash

The version has been updated (from 2.2.0 to 2.2.1) but the hash has not
been updated, resulting in the following error

direnv: error hash mismatch. Expected 'sha256-5EwyKnkJNQeXrRkYbwwRBcXbibosCJqyIUuz9Xq+LRc=' but got 'sha256-zelF0vLbEl5uaqrfIzbgNzJWGmLzCmYAkInj/LNxvKs='
This commit is contained in:
Olivier Ligot 2023-01-30 09:15:34 +01:00
parent e83865a165
commit bca0f8ea52
No known key found for this signature in database
GPG key ID: 670F3AB26B40F649

View file

@ -90,7 +90,7 @@ Put the following lines in your `.envrc`:
```bash
if ! has nix_direnv_version || ! nix_direnv_version 2.2.1; then
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.1/direnvrc" "sha256-5EwyKnkJNQeXrRkYbwwRBcXbibosCJqyIUuz9Xq+LRc="
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.1/direnvrc" "sha256-zelF0vLbEl5uaqrfIzbgNzJWGmLzCmYAkInj/LNxvKs="
fi
```