This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare -A nixenv_paths | |
nadd() { | |
setopt local_options err_return pipefail | |
local out out_paths | |
for installable in "$@"; do | |
local with_outputs="$installable^*" | |
if [[ "$installable" = *"^"* ]]; then | |
with_outputs="$installable" | |
fi |