whoami: init at 1.10.3

This commit is contained in:
Diogo Correia 2024-10-15 10:50:45 +01:00
parent a69181cb38
commit 964f3946dc

View File

@ -0,0 +1,34 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "whoami";
version = "1.10.3";
src = fetchFromGitHub {
owner = "traefik";
repo = "whoami";
rev = "v${version}";
hash = "sha256-wzxgmysqn4aWAZEaMjMwHdHLe4UZ4nwdNFJw5X7fuKQ=";
};
vendorHash = "sha256-qDfkYIAymkFUtbKka9OLoYjT+S9KhOra2UtOvhoz5Mw=";
ldflags = [ "-s" ];
CGO_ENABLED = 0;
doCheck = false;
meta = {
description = "Tiny Go server that prints os information and HTTP request to output";
mainProgram = "whoami";
homepage = "https://github.com/traefik/whoami";
changelog = "https://github.com/traefik/whoami/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dvcorreia ];
};
}