1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 00:06:26 -04:00

simplify config.guess line (#858)

This commit is contained in:
Valentin Gagarin 2024-01-07 11:08:50 +01:00 committed by GitHub
parent 143801d9ae
commit 0669665b42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,8 +49,7 @@ The build platform is determined automatically by Nix during the configure phase
The host platform is best determined by running this command on the host platform:
```shell-session
$ mygnuconfig=$(nix-build '<nixpkgs>' -I nixpkgs=channel:nixos-22.11 -A gnu-config)
$ "$mygnuconfig"/config.guess
$ $(nix-build '<nixpkgs>' -I nixpkgs=channel:nixos-22.11 -A gnu-config)/config.guess
aarch64-unknown-linux-gnu
```