forked from divnix/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirenv_lib.sh
77 lines (67 loc) · 2.42 KB
/
direnv_lib.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2022 The Standard Authors
# SPDX-License-Identifier: Unlicense
# re-branding & force congruent choice with `std` CLI
direnv_layout_dir=$(git rev-parse --show-toplevel)/.std
PRJ_ROOT="${direnv_layout_dir%/*}"
PRJ_DATA_DIR="${direnv_layout_dir}"
PRJ_CACHE_DIR="${direnv_layout_dir}/cache"
export PRJ_ROOT
export PRJ_DATA_DIR
export PRJ_CACHE_DIR
# nicer dienv & nixago output styling
export DIRENV_LOG_FORMAT=$'\E[mdirenv: \E[38;5;8m%s\E[m'
# Usage use std <cellsroot> <target>
#
# Loads the environment determined by the given std target
#
# Example (.envrc):
# source "$(nix eval .#__std.direnv_lib)"
# use std cells //std/devshells:default
use_std() {
local system
system="$(nix eval --raw --impure --expr builtins.currentSystem)"
local cellsroot="$1"
local frgmnts=($(echo "$2" | sed 's#//##' | sed 's#:# #' | sed 's#/# #g'))
local block="${frgmnts[0]}"
local organ="${frgmnts[1]}"
local target="${frgmnts[2]}"
local profile_path="$direnv_layout_dir/$block/$organ/$target"
local nix_args=(
"--no-update-lock-file"
"--no-write-lock-file"
"--no-warn-dirty"
"--no-link"
"--keep-outputs"
"--build-poll-interval" "0"
"--accept-flake-config"
"--builders-use-substitutes"
)
shift 2
if [[ $# -gt 0 ]]; then
nix_args+=("${@}")
fi
if [[ -f "$cellsroot/$block/$organ/$target.nix" ]]; then
log_status "Watching: $block/$organ/$target.nix"
watch_file "$cellsroot/$block/$organ/$target.nix"
elif [[ -f "$cellsroot/$block/$organ/default.nix" ]]; then
log_status "Watching: $block/$organ/default.nix"
watch_file "$cellsroot/$block/$organ.nix"
elif [[ -f "$cellsroot/$block/$organ.nix" ]]; then
log_status "Watching: $cellsroot/$block/$organ.nix"
watch_file "$cellsroot/$block/$organ.nix"
fi
if [[ -d "$cellsroot/$block/$organ/$target" ]]; then
log_status "Watching: $cellsroot/$block/$organ/$target (recursively)"
watch_dir "$cellsroot/$block/$organ/$target"
elif [[ -d "$cellsroot/$block/$organ" ]]; then
log_status "Watching: $cellsroot/$block/$organ (recursively)"
watch_dir "$cellsroot/$block/$organ"
fi
mkdir -p "$(direnv_layout_dir)/$block/$organ/$target"
enter="$(nix build "$PWD#__std.actions.$system.$block.$organ.$target.enter" "${nix_args[@]}" --print-out-paths --profile "$profile_path/enter-action")"
export STD_DIRENV=1
eval "$(<"$enter")"
# this is not true
unset IN_NIX_SHELL STD_DIRENV
}