Skip to content

Commit

Permalink
etherguard: init at 0.3.5-f5 (#354933)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksanaa authored Nov 24, 2024
2 parents 081c12a + 488a41b commit 55fdcb4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/et/etherguard/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
fetchFromGitHub,
buildGoModule,
lib,
}:
buildGoModule rec {
pname = "etherguard";
version = "0.3.5-f5";
src = fetchFromGitHub {
owner = "KusakabeShi";
repo = "EtherGuard-VPN";
rev = "v${version}";
hash = "sha256-67ocXHf+AN3nyPt4636ZJHGRqWSjkpTiDvU5243urBw=";
};

vendorHash = "sha256-9+zpQ/AhprMMfC4Om64GfQLgms6eluTOB6DdnSTNOlk=";

meta = {
mainProgram = "EtherGuard-VPN";
maintainers = with lib.maintainers; [ xddxdd ];
description = "Layer 2 version of WireGuard with Floyd Warshall implementation in Go";
homepage = "https://github.com/KusakabeShi/EtherGuard-VPN";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
};
}

0 comments on commit 55fdcb4

Please sign in to comment.