ffffng/nix/lib.inc.sh

11 lines
227 B
Bash
Raw Normal View History

function wrap() {
local TOOL="$1"
local REPO="$2"
shift
shift
SHELL_NIX="$REPO/shell.nix"
QUOTED_ARGS="$(printf "${1+ %q}" "$@")"
exec nix-shell "$SHELL_NIX" --pure --command "$TOOL $QUOTED_ARGS"
}