BTOP snap fails to run

I’ve been able to successfully build the btop snap, but it fails to run. This is the error I’m seeing and I’m not sure how to proceed:

terminate called after throwing an instance of 'std::logic_error'
  what():  basic_string::_M_construct null not valid
Aborted (core dumped)

Here’s the yaml:

name: btop
adopt-info: btop
summary: Resource monitor that shows usage and stats
description: |
  Resource monitor that shows usage and stats for processor, memory, disks, network and processes.
  C++ version and continuation of bashtop and bpytop.
license: Apache-2.0

assumes:
  - command-chain

base: core20
grade: stable
confinement: strict
compression: lzo

architectures:
  - build-on: amd64
  - build-on: arm64
  - build-on: armhf
  - build-on: ppc64el
  - build-on: s390x

package-repositories:
 - type: apt
   ppa: ubuntu-toolchain-r/test
   
apps:
  btop:
    command: usr/local/bin/btop
    command-chain: 
      - bin/homeishome-launch     
    plugs: 
      - mount-observe
      - process-control
      - system-observe
      - hardware-observe
      - network
      - physical-memory-observe
      - home
      
parts:
  btop: 
    source: https://github.com/aristocratos/btop
    source-type: git
    plugin: make
    make-parameters:  
      - PREFIX=/usr/local
      - STATIC=true
    build-environment:
      - LC_ALL: C.UTF-8
      - LANG: C.UTF-8    
    
    build-packages:
      - coreutils 
      - sed 
      - git 
      - build-essential 
      - gcc-11 
      - g++-11
    
    stage-packages:
      - coreutils 
      - sed 
      - git 
      - build-essential 
      - gcc-11 
      - g++-11    

    override-pull: |
      snapcraftctl pull
      snapcraftctl set-version "$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)"
      
  homeishome-launch:
    plugin: nil
    stage-snaps:
      - homeishome-launch  

If anyone has any ideas or pointers, I would appreciate the assist.

TIA

Developer and I figured it out.