nu_plugin_audio_hook 0.2.5

A nushell plugin to make and play sounds
Documentation
use std log
let features = [
    flac
    minimp3
    symphonia-aac
    symphonia-flac
    symphonia-isomp4
    symphonia-mp3 
    symphonia-vorbis
    symphonia-wav 
    vorbis
    wav
]
def main [package_file: path = nupm.nuon] {
    let repo_root = (ls -f $package_file | first | get name | path dirname)
    let install_root = $env.NUPM_HOME | path join "plugins"

    let name = open ($repo_root | path join "Cargo.toml") | get package.name
    echo sel
    let features = $features | input list --multi "select cargo features"

   
    let cmd = $"cargo install --path ($repo_root) --root ($install_root) --features=($features | str join ",")"
    log info $"building plugin using: (ansi blue)($cmd)(ansi reset)"
    nu -c $cmd
    let ext: string = if ($nu.os-info.name == 'windows') { '.exe' } else { '' }
    plugin add $"($install_root | path join "bin" $name)($ext)"
    log info "do not forget to restart Nushell for the plugin to be fully available!"
}