3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/pingu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
607 B
Nix
Raw Normal View History

2022-06-25 09:36:56 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pingu";
2023-02-14 07:11:38 +00:00
version = "0.0.5";
2022-06-25 09:36:56 +01:00
src = fetchFromGitHub {
owner = "sheepla";
repo = "pingu";
rev = "v${version}";
2023-02-14 07:11:38 +00:00
sha256 = "sha256-iAHj6/qaZgpTfrUZZ9qdsjiNMJ2zH0CzhR4TVSC9oLE=";
2022-06-25 09:36:56 +01:00
};
2023-02-14 07:11:38 +00:00
vendorHash = "sha256-xn6la6E0C5QASXxNee1Py/rBs4ls9X/ePeg4Q1e2UyU=";
2022-06-25 09:36:56 +01:00
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 ];
};
}