wesher: init at 0.2.6
Wesher is a simple wireguard mesh manager.
This commit is contained in:
parent
f5426f1f8d
commit
5cb30bdd97
2 changed files with 32 additions and 0 deletions
30
pkgs/servers/wesher/default.nix
Normal file
30
pkgs/servers/wesher/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "wesher";
|
||||||
|
version = "0.2.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "costela";
|
||||||
|
repo = "wesher";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-EIajvcBhS5G9dJzRgXhnD1QKOAhmzngdyCU4L7itT8U=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-BZzhBC4C0OoAxUEDROkggCQF35C9Z4+0/Jk0ZD8Hz1s=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s" "-w" "-X main.version=${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Wireguard overlay mesh network manager";
|
||||||
|
homepage = "https://github.com/costela/wesher";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ tylerjl ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -24502,6 +24502,8 @@ with pkgs;
|
||||||
|
|
||||||
webmetro = callPackage ../servers/webmetro { };
|
webmetro = callPackage ../servers/webmetro { };
|
||||||
|
|
||||||
|
wesher = callPackage ../servers/wesher { };
|
||||||
|
|
||||||
wishlist = callPackage ../servers/wishlist { };
|
wishlist = callPackage ../servers/wishlist { };
|
||||||
|
|
||||||
wsdd = callPackage ../servers/wsdd { };
|
wsdd = callPackage ../servers/wsdd { };
|
||||||
|
|
Loading…
Reference in a new issue