github.com/mit-dci/lit@v0.0.0-20221102210550-8c3d3b49f2ce/snap/snapcraft.yaml (about)

     1  name: lit
     2  version: master
     3  summary: Lightning Network node software
     4  description: |
     5    Under development, not for use with real money.
     6  
     7  grade: devel # must be 'stable' to release into candidate/stable channels
     8  confinement: strict
     9  
    10  apps:
    11    lit:
    12      command: lit
    13      plugs: [network, network-bind]
    14    af:
    15      command: lit-af
    16      plugs: [network, network-bind]
    17      aliases: [lit-af]
    18  
    19  parts:
    20    lit:
    21      source: .
    22      plugin: go
    23      go-importpath: github.com/mit-dci/lit
    24      after: [go]
    25    go:
    26      source-tag: go1.8.3