about summary refs log tree commit diff
path: root/pkgs/tools/networking/pingu/default.nix
blob: 87b20daf97953009377cc2c567ed2dff92958e6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}