mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 13:17:35 +00:00
wg-friendly-peer-names: init at unstable-2021-11-08
This commit is contained in:
parent
cc10e135d4
commit
a54392efda
29
pkgs/tools/networking/wg-friendly-peer-names/default.nix
Normal file
29
pkgs/tools/networking/wg-friendly-peer-names/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, wireguard-tools
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "wg-friendly-peer-names";
|
||||
version = "unstable-2021-11-08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FlyveHest";
|
||||
repo = "wg-friendly-peer-names";
|
||||
rev = "66b9b6b74ec77b9fec69b2a58296635321d4f5f1";
|
||||
sha256 = "pH/b5rCHIqLxz/Fnx+Dm0m005qAUWBsczSU9vGEQ2RQ=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -10468,6 +10468,8 @@ with pkgs;
|
||||
|
||||
wireguard-tools = callPackage ../tools/networking/wireguard-tools { };
|
||||
|
||||
wg-friendly-peer-names = callPackage ../tools/networking/wg-friendly-peer-names { };
|
||||
|
||||
woff2 = callPackage ../development/web/woff2 { };
|
||||
|
||||
woof = callPackage ../tools/misc/woof { };
|
||||
|
Loading…
Reference in New Issue
Block a user