rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / pingu / default.nix
blob5fcaa0af5fefc9480014d6320dec6165629044b6
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "pingu";
5   version = "0.0.5";
7   src = fetchFromGitHub {
8     owner = "sheepla";
9     repo = "pingu";
10     rev = "v${version}";
11     sha256 = "sha256-iAHj6/qaZgpTfrUZZ9qdsjiNMJ2zH0CzhR4TVSC9oLE=";
12   };
14   vendorHash = "sha256-xn6la6E0C5QASXxNee1Py/rBs4ls9X/ePeg4Q1e2UyU=";
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     mainProgram = "pingu";
22   };