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
39 lines
908 B
Nix
39 lines
908 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildGoModule (finalAttrs: {
|
|
pname = "grmon";
|
|
version = "0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bcicen";
|
|
repo = "grmon";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-0J7f4DMADUut3Da0F1eTDsT1Hlk0rfInwzbcVcQNzg8=";
|
|
};
|
|
|
|
vendorHash = "sha256-ySgWEGHlEJpfB/BZuRs1bELBspEaiaX/UnJai2V/hx0=";
|
|
|
|
env.CGO_ENABLED = "0";
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Command line monitoring for goroutines";
|
|
longDescription = ''
|
|
To use it, instrument your Go code following the
|
|
[usage description of the project](https://github.com/bcicen/grmon?tab=readme-ov-file#usage).
|
|
'';
|
|
homepage = "https://github.com/bcicen/grmon";
|
|
license = licenses.mit;
|
|
mainProgram = "grmon";
|
|
maintainers = with maintainers; [ katexochen ];
|
|
};
|
|
})
|