2020-07-22 21:17:48 +00:00
|
|
|
# Hacking
|
|
|
|
|
|
|
|
This section provides some notes on how to hack on Nix. To get the
|
|
|
|
latest version of Nix from GitHub:
|
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
$ git clone https://github.com/NixOS/nix.git
|
|
|
|
$ cd nix
|
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
|
|
|
To build Nix for the current operating system/architecture use
|
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
$ nix-build
|
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
2020-08-31 12:24:26 +00:00
|
|
|
or if you have a flake-enabled nix:
|
2020-07-22 21:17:48 +00:00
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
$ nix build
|
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
|
|
|
This will build `defaultPackage` attribute defined in the `flake.nix`
|
|
|
|
file. To build for other platforms add one of the following suffixes to
|
|
|
|
it: aarch64-linux, i686-linux, x86\_64-darwin, x86\_64-linux. i.e.
|
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
$ nix-build -A defaultPackage.x86_64-linux
|
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
|
|
|
To build all dependencies and start a shell in which all environment
|
|
|
|
variables are set up so that those dependencies can be found:
|
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
$ nix-shell
|
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
|
|
|
To build Nix itself in this shell:
|
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
[nix-shell]$ ./bootstrap.sh
|
2020-09-27 20:35:03 +00:00
|
|
|
[nix-shell]$ ./configure $configureFlags --prefix=$(pwd)/outputs/out
|
2020-07-31 13:43:25 +00:00
|
|
|
[nix-shell]$ make -j $NIX_BUILD_CORES
|
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
2020-09-27 20:35:03 +00:00
|
|
|
To install it in `$(pwd)/outputs` and test it:
|
2020-07-22 21:17:48 +00:00
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
[nix-shell]$ make install
|
2020-09-27 20:35:03 +00:00
|
|
|
[nix-shell]$ make installcheck -j $NIX_BUILD_CORES
|
|
|
|
[nix-shell]$ ./outputs/out/bin/nix --version
|
|
|
|
nix (Nix) 3.0
|
2020-07-31 13:43:25 +00:00
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
2020-08-31 12:24:26 +00:00
|
|
|
To run a functional test:
|
|
|
|
|
|
|
|
```console
|
|
|
|
make tests/test-name-should-auto-complete.sh.test
|
|
|
|
```
|
|
|
|
|
2020-09-27 20:35:03 +00:00
|
|
|
To run the unit-tests for C++ code:
|
|
|
|
|
|
|
|
```
|
|
|
|
make check
|
|
|
|
```
|
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
If you have a flakes-enabled Nix you can replace:
|
2020-07-22 21:17:48 +00:00
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
$ nix-shell
|
|
|
|
```
|
2020-07-22 21:17:48 +00:00
|
|
|
|
|
|
|
by:
|
|
|
|
|
2020-07-31 13:43:25 +00:00
|
|
|
```console
|
|
|
|
$ nix develop
|
|
|
|
```
|