pingu: init at 0.0.3

This commit is contained in:
CactiChameleon9 2022-06-25 09:36:56 +01:00
parent 4936e482ac
commit 8be83b1663
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pingu";
version = "0.0.3";
src = fetchFromGitHub {
owner = "sheepla";
repo = "pingu";
rev = "v${version}";
sha256 = "sha256-KYCG3L5x0ZdcyseffB0GoKpLZ/VG/qjMDh10qrLn62Y=";
};
vendorSha256 = "sha256-HkESF/aADGPixOeh+osFnjzhpz+/4NIsJOjpyyFF9Eg=";
meta = with lib; {
description = "Ping command implementation in Go but with colorful output and pingu ascii art";
homepage = "https://github.com/sheepla/pingu/";
license = licenses.mit;
maintainers = with maintainers; [ CactiChameleon9 ];
};
}

View file

@ -9469,6 +9469,8 @@ with pkgs;
pingtcp = callPackage ../tools/networking/pingtcp { };
pingu = callPackage ../tools/networking/pingu { };
pinnwand = callPackage ../servers/pinnwand { };
pinsel = callPackage ../tools/misc/pinsel { };