base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / networking / wg-netmanager / default.nix
bloba2c16fae073b87957f532ead2abb4c003588a1eb
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "wg-netmanager";
5   version = "0.5.1";
7   src = fetchFromGitHub {
8     owner = "gin66";
9     repo = "wg_netmanager";
10     rev = "wg_netmanager-v${version}";
11     sha256 = "sha256-Mr4+TW1yOePEHa7puz6mTRJ514LGQeiEwPW3NKupV/M=";
12   };
14   cargoHash = "sha256-cOxkWMFPVmi+/BQWIvExzX5LDyC7C8kaTf5dGwfXj+s=";
16   buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
18   # Test 01 tries to create a wireguard interface, which requires sudo.
19   doCheck = true;
20   checkFlags = [ "--skip" "device" ];
22   meta = with lib; {
23     description = "Wireguard network manager";
24     longDescription = ''
25       Wireguard network manager, written in rust, simplifies the setup of wireguard nodes,
26       identifies short connections between nodes residing in the same subnet,
27       identifies unreachable aka dead nodes and maintains the routes between all nodes automatically.
28       To achieve this, wireguard network manager needs to be running on each node.
29     '';
30     homepage = "https://github.com/gin66/wg_netmanager";
31     license = with licenses; [ mit asl20 bsd3 mpl20 ];
32     maintainers = with maintainers; [ gin66 ];
33     platforms = platforms.linux;
34     mainProgram = "wg_netmanager";
35   };