about summary refs log tree commit diff
path: root/third_party/nix/scripts/daemon.sh
blob: 3daa0f1390977a3c309b2357b568df1b5860d135 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
set -eo pipefail

# Run a nix daemon using a local store, for use during development. Intended to
# be run from the cmake build directory

if [ $1 = "--debug" ]; then
    run=(gdb --args)
    shift 1
elif [ "$1" = "--rr" ]; then
    run=(rr record)
    shift 1
else
    run=()
fi

make -j 10
NIX_STORE_DIR=$(pwd)/nix/store \
    NIX_LOG_DIR=$(pwd)/nix/var/log/nix \
    NIX_STATE_DIR=$(pwd)/nix/var/nix \
    XDG_CACHE_HOME=$(pwd)/cache \
    NIX_LIBEXEC_DIR=$(pwd) \
    GRPC_TRACE=all \
    ${gdb[*]} ./src/nix-daemon/nix-daemon