nixcfg/nix/wesher.nix

26 lines
617 B
Nix
Raw Normal View History

2022-04-19 16:09:56 +00:00
self: super:
{
wesher = super.buildGoModule rec {
pname = "wesher";
version = "0.2.6";
2022-04-19 15:41:18 +00:00
2022-04-19 16:09:56 +00:00
src = super.fetchFromGitHub {
owner = "costela";
repo = "wesher";
rev = "v${version}";
sha256 = "1iagmnw2yf15r0fpikk610w0lm0gcxw83lcwfjyr2jv1q2ys71hh";
};
2022-04-19 15:41:18 +00:00
2022-04-19 16:09:56 +00:00
vendorSha256 = "0nyg0wzn8d4rzjs8yrxxj3gha94043ll80s1ql0fml025q2f3705";
2022-04-19 15:41:18 +00:00
2022-04-19 16:09:56 +00:00
checkPhase = "true";
2022-04-19 15:41:18 +00:00
2022-04-19 16:09:56 +00:00
meta = with super.lib; {
description = "wireguard overlay mesh network manager";
homepage = "https://github.com/costela/wesher";
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
2022-04-19 15:41:18 +00:00
};
}