sonar: init at v0.3.0 (#518813)

This commit is contained in:
Sandro
2026-05-25 13:34:44 +00:00
committed by GitHub
+37
View File
@@ -0,0 +1,37 @@
{
lib,
buildGoModule,
fetchFromGitHub,
versionCheckHook,
}:
buildGoModule (finalAttrs: {
__structuredAttrs = true;
pname = "sonar";
version = "0.3.0";
src = fetchFromGitHub {
owner = "raskrebs";
repo = "sonar";
tag = "v${finalAttrs.version}";
hash = "sha256-ucOIFws3fo94o5ziJDn8ldgWkpAuiUqW8A+MQdPNy3c=";
};
vendorHash = "sha256-komX1AmHt2NoF1x6xsNa2RFkfVzOXfYEMPhT0zwMxjw=";
ldflags = [
"-s -w -X github.com/raskrebs/sonar/internal/selfupdate.Version=v${finalAttrs.version}"
];
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "version";
doInstallCheck = true;
meta = {
description = "CLI tool for inspecting and managing services listening on localhost ports";
homepage = "https://github.com/raskrebs/sonar";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ paepcke ];
mainProgram = "sonar";
};
})