Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

32 lines
816 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
wireguard-tools,
}:
stdenv.mkDerivation {
pname = "wg-friendly-peer-names";
version = "0-unstable-2021-12-10";
src = fetchFromGitHub {
owner = "FlyveHest";
repo = "wg-friendly-peer-names";
rev = "b0c3e1a95c843dc9c6432895105b839ef9b362fc";
hash = "sha256-aGxrABmR+aQO35RYo/zI2037clnGOW0Tr16p7M1fQqc=";
};
installPhase = ''
install -D wgg.sh $out/bin/wgg
'';
meta = with lib; {
homepage = "https://github.com/FlyveHest/wg-friendly-peer-names";
description = "Small shellscript that makes it possible to give peers a friendlier and more readable name in the `wg` peer list";
license = licenses.mit;
platforms = wireguard-tools.meta.platforms;
maintainers = with maintainers; [ mkg20001 ];
mainProgram = "wgg";
};
}