mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
23 lines
664 B
Nix
23 lines
664 B
Nix
{ lib, nimPackages, fetchFromGitHub }:
|
|
nimPackages.buildNimPackage rec {
|
|
pname = "promexplorer";
|
|
version = "0.0.5";
|
|
nimBinOnly = true;
|
|
src = fetchFromGitHub {
|
|
owner = "marcusramberg";
|
|
repo = "promexplorer";
|
|
rev = "v${version}";
|
|
hash = "sha256-a+9afqdgLgGf2hOWf/QsElq+CurDfE1qDmYCzodZIDU=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|