diff options
author | Peter Becich <peterbecich@gmail.com> | 2023-02-05 12:00:48 -0800 |
---|---|---|
committer | Peter Becich <peterbecich@gmail.com> | 2023-02-05 12:00:48 -0800 |
commit | b8e96351f761ebc688f2f2f6a13345576c008396 (patch) | |
tree | 153232ccb21b60d3b06789b9ee7d4ff176e97612 /doc | |
parent | 895dfc656a21f6252ddf48df0d1f215effa04ecb (diff) |
fix `clang11Stdenv` dev shell documentation
`clang11StdenvPackages` does not exist
```
│ └───x86_64-linux
│ ├───ccacheStdenv: development environment 'nix'
│ ├───clang11Stdenv: development environment 'nix'
│ ├───clangStdenv: development environment 'nix'
│ ├───default: development environment 'nix'
│ ├───gccStdenv: development environment 'nix'
│ ├───libcxxStdenv: development environment 'nix'
│ └───stdenv: development environment 'nix'
```
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/src/contributing/hacking.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/src/contributing/hacking.md b/doc/manual/src/contributing/hacking.md index 9dbafcc0a..e2046acc8 100644 --- a/doc/manual/src/contributing/hacking.md +++ b/doc/manual/src/contributing/hacking.md @@ -45,13 +45,13 @@ To get a shell with a different compilation environment (e.g. stdenv, gccStdenv, clangStdenv, clang11Stdenv, ccacheStdenv): ```console -$ nix-shell -A devShells.x86_64-linux.clang11StdenvPackages +$ nix-shell -A devShells.x86_64-linux.clang11Stdenv ``` or if you have a flake-enabled nix: ```console -$ nix develop .#clang11StdenvPackages +$ nix develop .#clang11Stdenv ``` Note: you can use `ccacheStdenv` to drastically improve rebuild |