hcloud_exporter: init at unstable-2021-06-07

master
Simon Bruder 2021-08-28 13:40:06 +02:00
parent a0fbcbb920
commit a8809bfcd4
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 26 additions and 0 deletions

View File

@ -27,6 +27,8 @@ in
gust_tools = callPackage ./gust_tools { };
hcloud_exporter = callPackage ./hcloud_exporter { };
httpdirfs = callPackage ./httpdirfs { };
mpvScripts = prev.mpvScripts // {

View File

@ -40,6 +40,7 @@
fSpy
face_morpher
gust_tools
hcloud_exporter
httpdirfs
nsz
oha

View File

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "hcloud_exporter";
version = "unstable-2021-06-07";
src = fetchFromGitHub {
owner = "promhippie";
repo = pname;
rev = "f22c52bf79ecafafdecf6a3b6dd3642b51b20ddb";
sha256 = "sha256-7UJhM/HLhRySTQ1lNLMgfKD9GDOivRMhGGNVLQknMLA=";
};
vendorSha256 = "sha256-qWYj/BCuY/995pLiBUoMtKvDV81j17c2GJeqhgBWn74=";
meta = with lib; {
description = "Prometheus exporter for Hetzner Cloud";
homepage = "https://promhippie.github.io/hcloud_exporter/";
license = licenses.asl20;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.linux;
};
}