whoami: init at 1.10.3
This commit is contained in:
parent
a69181cb38
commit
964f3946dc
34
pkgs/by-name/wh/whoami/package.nix
Normal file
34
pkgs/by-name/wh/whoami/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user