mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
394a8818e4
- Fix GOPATH checks - Install manpages - Also build and install discovery and relay servers + cli - Make the build more pure by explicitly setting the build username/host
18 lines
491 B
Diff
18 lines
491 B
Diff
diff --git i/build.go w/build.go
|
|
index 7d400d6f..1b5e1d25 100644
|
|
--- i/build.go
|
|
+++ w/build.go
|
|
@@ -175,6 +175,12 @@ var targets = map[string]target{
|
|
{src: "AUTHORS", dst: "deb/usr/share/doc/syncthing-relaypoolsrv/AUTHORS.txt", perm: 0644},
|
|
},
|
|
},
|
|
+ "stcli": {
|
|
+ name: "stcli",
|
|
+ description: "Syncthing CLI",
|
|
+ buildPkg: "github.com/syncthing/syncthing/cmd/stcli",
|
|
+ binaryName: "stcli", // .exe will be added automatically for Windows builds
|
|
+ },
|
|
}
|
|
|
|
func init() {
|