1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 20:16:03 +01:00

Merge pull request #13878 from urbas/hacking-instructions

hacking.md: set installation outputs as well
This commit is contained in:
Jörg Thalheim 2025-08-31 13:58:36 +02:00 committed by GitHub
commit 73cdfe7066
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ $ nix-shell --attr devShells.x86_64-linux.native-clangStdenvPackages
To build Nix itself in this shell: To build Nix itself in this shell:
```console ```console
[nix-shell]$ mesonFlags+=" --prefix=$(pwd)/outputs/out" [nix-shell]$ out="$(pwd)/outputs/out" dev=$out debug=$out mesonFlags+=" --prefix=${out}"
[nix-shell]$ dontAddPrefix=1 configurePhase [nix-shell]$ dontAddPrefix=1 configurePhase
[nix-shell]$ buildPhase [nix-shell]$ buildPhase
``` ```