Commit a14d424d authored by Alex Auvolat's avatar Alex Auvolat
Browse files

wgautomesh: init at 0.1.0

parent 635b128c
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };