Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
804 B
Nix
31 lines
804 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "pingu";
|
|
version = "0.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sheepla";
|
|
repo = "pingu";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-iAHj6/qaZgpTfrUZZ9qdsjiNMJ2zH0CzhR4TVSC9oLE=";
|
|
};
|
|
|
|
vendorHash = "sha256-xn6la6E0C5QASXxNee1Py/rBs4ls9X/ePeg4Q1e2UyU=";
|
|
|
|
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 ];
|
|
mainProgram = "pingu";
|
|
# Doesn't build with Go toolchain >1.22, build error:
|
|
# 'link: golang.org/x/net/internal/socket: invalid reference to syscall.recvmsg'.
|
|
broken = true;
|
|
};
|
|
}
|