commit
a2df7a12ef
40
pkgs/servers/webmesh/default.nix
Normal file
40
pkgs/servers/webmesh/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user