mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
promexplorer: init at 0.0.3
This commit is contained in:
parent
0079822b38
commit
0a02190f4b
22
pkgs/tools/misc/promexplorer/default.nix
Normal file
22
pkgs/tools/misc/promexplorer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user