mirror of
https://github.com/acaloiaro/frm
synced 2026-07-21 18:29:12 +00:00
15 lines
431 B
Bash
15 lines
431 B
Bash
if ! has nix_direnv_version || ! nix_direnv_version 3.0.6; then
|
|
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.6/direnvrc" "sha256-RYcUJaRMf8oF5LznDrlCXbkOQrywm0HDv1VjYGaJGdM="
|
|
fi
|
|
|
|
watch_file flake.nix
|
|
watch_file flake.lock
|
|
watch_file .env
|
|
watch_file go.mod
|
|
watch_file go.lock
|
|
|
|
if ! use flake . --no-pure-eval
|
|
then
|
|
echo "devenv could not be built. The devenv environment was not loaded." >&2
|
|
fi
|
|
|