promexplorer: init at 0.0.3

This commit is contained in:
Marcus Ramberg 2023-04-05 20:24:44 +02:00
parent 0079822b38
commit 0a02190f4b
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, nimPackages, fetchFromGitHub }:
nimPackages.buildNimPackage rec {
pname = "promexplorer";
version = "0.0.3";
nimBinOnly = true;
src = fetchFromGitHub {
owner = "marcusramberg";
repo = "promexplorer";
rev = "v${version}";
hash = "sha256-q+m4+aWT3IiI/XGmAm7jrJAxRbzzHr+p58eiHqjEbV0=";
};
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 ];
};
}

View File

@ -10375,6 +10375,8 @@ with pkgs;
pnmixer = callPackage ../tools/audio/pnmixer { };
promexplorer = callPackage ../tools/misc/promexplorer { };
pulsemixer = callPackage ../tools/audio/pulsemixer { };
pwsafe = callPackage ../applications/misc/pwsafe { };