diff options
author | Michael Muenz <m.muenz@gmail.com> | 2022-02-18 13:52:58 +0000 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2022-02-18 13:54:29 +0000 |
commit | d7a04a034021616f80b06ce22332769a37e1799b (patch) | |
tree | 40a35b502925ec85788822da8bcfd39ae40d8678 | |
parent | 67262f870448028501548c7c6df45c73ed56dce0 (diff) |
security/headscale: Add new port
An open source, self-hosted implementation of the Tailscale coordination server.
WWW: https://github.com/juanfont/headscale
PR: 260755
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/headscale/Makefile | 22 | ||||
-rw-r--r-- | security/headscale/distinfo | 5 | ||||
-rw-r--r-- | security/headscale/pkg-descr | 3 |
4 files changed, 31 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 66fc20840b95..b5ccb808dcd1 100644 --- a/security/Makefile +++ b/security/Makefile @@ -222,6 +222,7 @@ SUBDIR += hashcat SUBDIR += hashcat-legacy SUBDIR += heaan + SUBDIR += headscale SUBDIR += heimdal SUBDIR += helib SUBDIR += hexl diff --git a/security/headscale/Makefile b/security/headscale/Makefile new file mode 100644 index 000000000000..8e767515d3d4 --- /dev/null +++ b/security/headscale/Makefile @@ -0,0 +1,22 @@ +PORTNAME= headscale +PORTVERSION= 0.12.1 +DISTVERSIONPREFIX= v +CATEGORIES= security + +MAINTAINER= m.muenz@gmail.com +COMMENT= Mesh VPN that makes it easy to connect your devices + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ca_root_nss>0:security/ca_root_nss + +USES= go:modules + +GO_MODULE= github.com/juanfont/headscale + +GO_TARGET= ./cmd/headscale + +PLIST_FILES= bin/headscale + +.include <bsd.port.mk> diff --git a/security/headscale/distinfo b/security/headscale/distinfo new file mode 100644 index 000000000000..fff5cb1b53a3 --- /dev/null +++ b/security/headscale/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1640673328 +SHA256 (go/security_headscale/headscale-v0.12.1/v0.12.1.mod) = df2b1cd42e74b056747b0ab5050709205371e15d377cc4de56cdf5baa204a18b +SIZE (go/security_headscale/headscale-v0.12.1/v0.12.1.mod) = 6516 +SHA256 (go/security_headscale/headscale-v0.12.1/v0.12.1.zip) = 095fca00c8e418754f58e1e799a23fba2667dc4159d0d19724d05f55c0691b96 +SIZE (go/security_headscale/headscale-v0.12.1/v0.12.1.zip) = 234754 diff --git a/security/headscale/pkg-descr b/security/headscale/pkg-descr new file mode 100644 index 000000000000..5237b822ed76 --- /dev/null +++ b/security/headscale/pkg-descr @@ -0,0 +1,3 @@ +An open source, self-hosted implementation of the Tailscale coordination server. + +WWW: https://github.com/juanfont/headscale |