Merge pull request #178963 from CactiChameleon9/master

pingu: init at 0.0.3

authored by

Jonas Heinrich and committed by
GitHub
3d7e7ead bb738c52

+30
+6
maintainers/maintainer-list.nix
··· 2046 githubId = 1516457; 2047 name = "Christian Albrecht"; 2048 }; 2049 callahad = { 2050 email = "dan.callahan@gmail.com"; 2051 github = "callahad";
··· 2046 githubId = 1516457; 2047 name = "Christian Albrecht"; 2048 }; 2049 + CactiChameleon9 = { 2050 + email = "h19xjkkp@duck.com"; 2051 + github = "CactiChameleon9"; 2052 + githubId = 51231053; 2053 + name = "Daniel"; 2054 + }; 2055 callahad = { 2056 email = "dan.callahan@gmail.com"; 2057 github = "callahad";
+22
pkgs/tools/networking/pingu/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "pingu"; 5 + version = "0.0.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "sheepla"; 9 + repo = "pingu"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-KYCG3L5x0ZdcyseffB0GoKpLZ/VG/qjMDh10qrLn62Y="; 12 + }; 13 + 14 + vendorSha256 = "sha256-HkESF/aADGPixOeh+osFnjzhpz+/4NIsJOjpyyFF9Eg="; 15 + 16 + meta = with lib; { 17 + description = "Ping command implementation in Go but with colorful output and pingu ascii art"; 18 + homepage = "https://github.com/sheepla/pingu/"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ CactiChameleon9 ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 9879 9880 pingtcp = callPackage ../tools/networking/pingtcp { }; 9881 9882 pinnwand = callPackage ../servers/pinnwand { }; 9883 9884 pinsel = callPackage ../tools/misc/pinsel { };
··· 9879 9880 pingtcp = callPackage ../tools/networking/pingtcp { }; 9881 9882 + pingu = callPackage ../tools/networking/pingu { }; 9883 + 9884 pinnwand = callPackage ../servers/pinnwand { }; 9885 9886 pinsel = callPackage ../tools/misc/pinsel { };