mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
wgautomesh: init at 0.1.0
This commit is contained in:
parent
635b128ca3
commit
a14d424d85
25
pkgs/tools/networking/wgautomesh/default.nix
Normal file
25
pkgs/tools/networking/wgautomesh/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user