2023-04-29 16:46:19 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitea
|
|
|
|
, rustPlatform
|
|
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wgautomesh";
|
2024-07-01 15:47:52 +00:00
|
|
|
version = "unstable-20240524";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitea {
|
|
|
|
domain = "git.deuxfleurs.fr";
|
|
|
|
owner = "Deuxfleurs";
|
|
|
|
repo = "wgautomesh";
|
2024-07-01 15:47:52 +00:00
|
|
|
rev = "59d315b853d4251dfdfd8229152bc151655da438";
|
|
|
|
hash = "sha256-1xphnyuRMZEeq907nyhAW7iERYJLS1kxH0wRBsfYL40=";
|
2023-04-29 16:46:19 +00:00
|
|
|
};
|
|
|
|
|
2024-07-01 15:47:52 +00:00
|
|
|
cargoHash = "sha256-HZ1VImsfxRd0sFN/vKAKgwIV2eio2GiEz+6c1+dCmdk=";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Simple utility to help connect wireguard nodes together in a full mesh topology";
|
2023-04-29 16:46:19 +00:00
|
|
|
homepage = "https://git.deuxfleurs.fr/Deuxfleurs/wgautomesh";
|
|
|
|
license = licenses.agpl3Only;
|
|
|
|
maintainers = [ maintainers.lx ];
|
2023-08-04 22:07:22 +00:00
|
|
|
mainProgram = "wgautomesh";
|
2023-04-29 16:46:19 +00:00
|
|
|
};
|
|
|
|
}
|