evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / wg / wg-friendly-peer-names / package.nix
blobebbd898576d37e3720ada8c005d36aa89d01bfe8
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , wireguard-tools
5 }:
7 stdenv.mkDerivation {
8   pname = "wg-friendly-peer-names";
9   version = "unstable-2021-12-10";
11   src = fetchFromGitHub {
12     owner = "FlyveHest";
13     repo = "wg-friendly-peer-names";
14     rev = "b0c3e1a95c843dc9c6432895105b839ef9b362fc";
15     hash = "sha256-aGxrABmR+aQO35RYo/zI2037clnGOW0Tr16p7M1fQqc=";
16   };
18   installPhase = ''
19     install -D wgg.sh $out/bin/wgg
20   '';
22   meta = with lib; {
23     homepage = "https://github.com/FlyveHest/wg-friendly-peer-names";
24     description = "Small shellscript that makes it possible to give peers a friendlier and more readable name in the `wg` peer list";
25     license = licenses.mit;
26     platforms = wireguard-tools.meta.platforms;
27     maintainers = with maintainers; [ mkg20001 ];
28     mainProgram = "wgg";
29   };