wgautomesh: init at 0.1.0

This commit is contained in:
Alex Auvolat 2023-03-29 14:34:15 +02:00
parent 635b128ca3
commit a14d424d85
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, fetchFromGitea
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "wgautomesh";
version = "0.1.0";
src = fetchFromGitea {
domain = "git.deuxfleurs.fr";
owner = "Deuxfleurs";
repo = "wgautomesh";
rev = "v${version}";
sha256 = "FiFEpYLSJg52EtBXaZ685ICbaIyY9URrDt0bS0HPi0Q=";
};
cargoHash = "sha256-DGDVjQ4fr4/F1RE0qVc5CWcXrrCEswCF7rQQwlKzMPA=";
meta = with lib; {
description = "A simple utility to help connect wireguard nodes together in a full mesh topology";
homepage = "https://git.deuxfleurs.fr/Deuxfleurs/wgautomesh";
license = licenses.agpl3Only;
maintainers = [ maintainers.lx ];
};
}

View File

@ -13451,6 +13451,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
wgautomesh = callPackage ../tools/networking/wgautomesh { };
woff2 = callPackage ../development/web/woff2 { };
woodpecker-agent = callPackage ../development/tools/continuous-integration/woodpecker/agent.nix { };