@@ -254,26 +254,26 @@ This chooses the `cc_toolchain` bundled with GHC.
254254### Configuring your platform  
255255
256256` rules_haskell `  can be built and tested on Linux, MacOS, and Windows. Depending
257- on the platform GHC can be provisioned using nixpkgs  or by downloading a binary
257+ on the platform GHC can be provisioned using Nixpkgs  or by downloading a binary
258258distribution. In case of nixpkgs other toolchains (C compiler, Python, shell
259259tools) will also be provided by nixpkgs, in case of bindist they will be taken
260260from the environment (` $PATH ` ). The following ` --config `  options select the
261261corresponding combination of operating system and GHC distribution:
262262
263263|                      |       Linux      |       MacOS      |       Windows      | 
264264|  ------------------- |  --------------- |  --------------- |  ----------------- | 
265- |  nixpkgs              |  ` linux-nixpkgs `   |  ` macos-nixpkgs `  |                     | 
266- |  binary  distribution |  ` linux-bindist `  |  ` macos-bindist `  |  ` windows-bindist `  | 
265+ |  Nixpkgs              |  (unneeded)       |  ` macos-nixpkgs `  |  (unsupported)      | 
266+ |  Binary  distribution |  ` linux-bindist `  |  ` macos-bindist `  |  ` windows-bindist `  | 
267267
268268Hint: You can use Bazel's ` --announce_rc `  flag to see what options are being
269269used for a command in a specific configuration. E.g.
270270``` 
271- $ bazel build //tests:run-tests --config linux-nixpkgs  --nobuild --announce_rc 
271+ $ bazel build //tests:run-tests --config linux-bindist  --nobuild --announce_rc 
272272``` 
273273
274274Hint: To avoid repetition you can add your configuration to ` .bazelrc.local ` .
275275``` 
276- echo "build --config=linux-nixpkgs " >>.bazelrc.local 
276+ echo "build --config=linux-bindist " >>.bazelrc.local 
277277``` 
278278
279279### Saving common command-line flags to a file  
0 commit comments