Merge pull request #247646 from bbigras/webmesh

webmesh: init at 0.1.2
This commit is contained in:
OTABI Tomoya 2023-08-10 00:20:27 +09:00 committed by GitHub
commit a2df7a12ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "webmesh";
version = "0.1.2";
src = fetchFromGitHub {
owner = "webmeshproj";
repo = pname;
rev = "v${version}";
hash = "sha256-S7kenBrnhM8V0TdbRe+CJP2XGHG/dZbfGVwdRurPeP8=";
};
vendorHash = "sha256-LBd5IrNFGkEhz+joDv6juL7WuoFyoqCXnmEHFB1K6Nc=";
CGO_ENABLED = 0;
subPackages = [ "cmd/node" "cmd/wmctl" ];
ldflags = [
"-w"
"-s"
"-X github.com/webmeshproj/webmesh/pkg/version.Version=${version}"
"-X github.com/webmeshproj/webmesh/pkg/version.Commit=v${version}"
];
postInstall = ''
mv $out/bin/node $out/bin/webmesh-node
'';
meta = with lib; {
description = "A simple, distributed, zero-configuration WireGuard mesh provider";
homepage = "https://webmeshproj.github.io";
license = licenses.asl20;
maintainers = with maintainers; [ bbigras ];
};
}

View File

@ -14646,6 +14646,8 @@ with pkgs;
webalizer = callPackage ../tools/networking/webalizer { };
webmesh = callPackage ../servers/webmesh { };
wget = callPackage ../tools/networking/wget { };
wget2 = callPackage ../tools/networking/wget2 {