c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
22 lines
664 B
Nix
22 lines
664 B
Nix
{ lib, nimPackages, fetchFromGitHub }:
|
|
nimPackages.buildNimPackage rec {
|
|
pname = "promexplorer";
|
|
version = "0.0.4";
|
|
nimBinOnly = true;
|
|
src = fetchFromGitHub {
|
|
owner = "marcusramberg";
|
|
repo = "promexplorer";
|
|
rev = "v${version}";
|
|
hash = "sha256-Fj3RCVygixs+iIlLptX6aOsG4jJa/jUN8hXYkjZ7K/A=";
|
|
};
|
|
|
|
buildInputs = with nimPackages; [ illwill illwillwidgets ];
|
|
|
|
meta = with lib; {
|
|
description = "A simple tool to explore prometheus exporter metrics";
|
|
homepage = "https://github.com/marcusramberg/promexplorer";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ marcusramberg ];
|
|
};
|
|
}
|