Merge pull request #178963 from CactiChameleon9/master

pingu: init at 0.0.3
This commit is contained in:
Jonas Heinrich 2022-09-04 23:13:40 +02:00 committed by GitHub
commit 3d7e7eadcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

View File

@ -2046,6 +2046,12 @@
githubId = 1516457;
name = "Christian Albrecht";
};
CactiChameleon9 = {
email = "h19xjkkp@duck.com";
github = "CactiChameleon9";
githubId = 51231053;
name = "Daniel";
};
callahad = {
email = "dan.callahan@gmail.com";
github = "callahad";

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

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