-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.nix
More file actions
58 lines (51 loc) · 1.41 KB
/
shell.nix
File metadata and controls
58 lines (51 loc) · 1.41 KB
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
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
dart-sass
minify
];
shellHook = ''
if ! command -v emacs >/dev/null; then
echo 'Emacs not found in $PATH' >&2
exit 1
fi
# Set up local Doom install, if one isn't already present
if ! command -v doom >/dev/null; then
git clone https://github.org/doomemacs/core ./.doom.d
./.doom.d/bin/doom install .
fi
if [[ -x ./.doom.d/bin/doom ]]; then
export PATH="$PWD/.doom.d/bin:$PATH"
fi
export ROOT="$PWD"
# TODO: Use make instead
deps() {
pushd "$ROOT" >/dev/null
for name in doomemacs.org core modules modules-contrib; do
if [[ -d "external/$name" ]]; then
git -C external/$name pull --rebase
else
git clone --depth 1 https://github.com/doomemacs/$name external/
fi
done
popd >/dev/null
}
publish() {
pushd "$ROOT" >/dev/null
deps
doom publish external/doomemacs.org public/doomemacs.org
doom publish . public -e assets=public/doomemacs.org
doom publish external/core public/core/latest
doom publish external/modules public/modules/latest
doom publish external/modules-contrib public/modules-contrib/latest
popd >/dev/null
}
clean() {
pushd "$ROOT" >/dev/null
rm -virf external/*/
rm -virf public/*/
popd >/dev/null
}
'';
}