bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
22 lines
652 B
Nix
22 lines
652 B
Nix
{ lib, buildNimPackage, fetchFromGitHub }:
|
|
buildNimPackage (finalAttrs: {
|
|
pname = "promexplorer";
|
|
version = "0.0.5";
|
|
src = fetchFromGitHub {
|
|
owner = "marcusramberg";
|
|
repo = "promexplorer";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-a+9afqdgLgGf2hOWf/QsElq+CurDfE1qDmYCzodZIDU=";
|
|
};
|
|
|
|
lockFile = ./lock.json;
|
|
|
|
meta = with lib; {
|
|
description = "Simple tool to explore prometheus exporter metrics";
|
|
homepage = "https://github.com/marcusramberg/promexplorer";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ marcusramberg ];
|
|
mainProgram = "promexplorer";
|
|
};
|
|
})
|