forked from OpenBazaar/openbazaar-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snapcraft.yaml
28 lines (25 loc) · 878 Bytes
/
snapcraft.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: openbazaar-server
version: git
summary: OpenBazaar Server Daemon in Go
description: |
OpenBazaar server daemon handles the heavy lifting for the OpenBazaar desktop
application. The server combines several technologies: A modified IPFS node,
which itself combines ideas from Git, BitTorrent, Kademlia. A lightweight SPV
Bitcoin wallet for interacting with the Bitcoin network. And a JSON API which
can be used by a user interface to control the node and browse the network.
confinement: strict
apps:
daemon:
command: openbazaar-go
plugs: [network, network-bind]
parts:
openbazaar-go:
source: .
plugin: go
go-importpath: github.com/OpenBazaar/openbazaar-go
go-packages: [github.com/OpenBazaar/openbazaar-go]
build-packages: [gcc, libc6-dev]
stage-packages: [iproute2, net-tools]
after: [go]
go:
source-tag: go1.7.5